[08/12] fusion: Allow spaces between attribute-value pairs in an assembly name.

Hans Leidekker hans at codeweavers.com
Wed Feb 18 07:39:27 CST 2009


diff --git a/dlls/fusion/asmname.c b/dlls/fusion/asmname.c
index e90dff1..b028baa 100644
--- a/dlls/fusion/asmname.c
+++ b/dlls/fusion/asmname.c
@@ -454,6 +454,8 @@ static HRESULT parse_display_name(IAssemblyNameImpl *name, LPCWSTR szAssemblyNam
 
         *ptr2 = '\0';
 
+        while (*str == ' ') str++;
+
         if (!lstrcmpW(str, version))
             hr = parse_version(name, ptr);
         else if (!lstrcmpW(str, culture))



More information about the wine-patches mailing list