Commit aa2ad840 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

fusion: Allow zero spaces between attributes in display names.

parent 50996679
...@@ -622,7 +622,7 @@ static HRESULT parse_display_name(IAssemblyNameImpl *name, LPCWSTR szAssemblyNam ...@@ -622,7 +622,7 @@ static HRESULT parse_display_name(IAssemblyNameImpl *name, LPCWSTR szAssemblyNam
if (!ptr) if (!ptr)
goto done; goto done;
str = ptr + 2; str = ptr + 1;
while (!done) while (!done)
{ {
ptr = strchrW(str, '='); ptr = strchrW(str, '=');
...@@ -639,7 +639,7 @@ static HRESULT parse_display_name(IAssemblyNameImpl *name, LPCWSTR szAssemblyNam ...@@ -639,7 +639,7 @@ static HRESULT parse_display_name(IAssemblyNameImpl *name, LPCWSTR szAssemblyNam
goto done; goto done;
} }
if (!(ptr2 = strstrW(ptr, separator))) if (!(ptr2 = strchrW(ptr, ',')))
{ {
if (!(ptr2 = strchrW(ptr, '\0'))) if (!(ptr2 = strchrW(ptr, '\0')))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment