mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
fusion: Allow parsing the blob stream without a #.
This commit is contained in:
parent
fbc9dc109c
commit
8a7b76fefa
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue