Skip to content
Snippets Groups Projects
Commit 8a7b76fe authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard
Browse files

fusion: Allow parsing the blob stream without a #.

parent fbc9dc10
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment