mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
fusion: The Strings stream can be without a #.
This commit is contained in:
parent
f52ecfe041
commit
56bfe2972f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue