Module: wine Branch: master Commit: 8a7b76fefac7a7be52703d37cb01956890a5e678 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8a7b76fefac7a7be52703d37cb...
Author: James Hawkins jhawkins@codeweavers.com Date: Wed Jul 16 10:49:24 2008 -0500
fusion: Allow parsing the blob stream without a #.
---
dlls/fusion/assembly.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/fusion/assembly.c b/dlls/fusion/assembly.c index 94ea542..bbe8a76 100644 --- a/dlls/fusion/assembly.c +++ b/dlls/fusion/assembly.c @@ -299,7 +299,7 @@ static HRESULT parse_clr_metadata(ASSEMBLY *assembly) } else if (!lstrcmpA(stream, "#Strings") || !lstrcmpA(stream, "Strings")) assembly->strings = (BYTE *)assembly_data_offset(assembly, ofs); - else if (!lstrcmpA(stream, "#Blob")) + else if (!lstrcmpA(stream, "#Blob") || !lstrcmpA(stream, "Blob")) assembly->blobs = (BYTE *)assembly_data_offset(assembly, ofs);
ptr += lstrlenA(stream);