Hans Leidekker : fusion: Allow spaces between attribute-value pairs in an assembly name.

Alexandre Julliard julliard at winehq.org
Thu Feb 19 09:18:52 CST 2009


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

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu Feb 19 14:04:41 2009 +0100

fusion: Allow spaces between attribute-value pairs in an assembly name.

---

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

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-cvs mailing list