James Hawkins : fusion: The Strings stream can be without a #.

Alexandre Julliard julliard at winehq.org
Mon May 5 07:14:55 CDT 2008


Module: wine
Branch: master
Commit: 56bfe2972fccc12430baa3f8750135960f0054e3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=56bfe2972fccc12430baa3f8750135960f0054e3

Author: James Hawkins <jhawkins at codeweavers.com>
Date:   Sat May  3 21:17:17 2008 -0500

fusion: The Strings stream can be without a #.

---

 dlls/fusion/assembly.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/fusion/assembly.c b/dlls/fusion/assembly.c
index efffcca..2110ba5 100644
--- a/dlls/fusion/assembly.c
+++ b/dlls/fusion/assembly.c
@@ -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);




More information about the wine-cvs mailing list