Commit 8a7b76fe authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

fusion: Allow parsing the blob stream without a #.

parent fbc9dc10
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment