mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
fusion: Allow parsing the blob stream without a #.
This commit is contained in:
parent
fbc9dc109c
commit
8a7b76fefa
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user