Commit 56bfe297 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

fusion: The Strings stream can be without a #.

parent f52ecfe0
......@@ -297,7 +297,7 @@ static HRESULT parse_clr_metadata(ASSEMBLY *assembly)
if (FAILED(hr))
return hr;
}
else if (!lstrcmpA(stream, "#Strings"))
else if (!lstrcmpA(stream, "#Strings") || !lstrcmpA(stream, "Strings"))
assembly->strings = (BYTE *)assembly_data_offset(assembly, ofs);
else if (!lstrcmpA(stream, "#Blob"))
assembly->blobs = (BYTE *)assembly_data_offset(assembly, ofs);
......
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