fusion: Allow zero spaces between attributes in display names.
This commit is contained in:
parent
509966796d
commit
aa2ad840b9
|
@ -622,7 +622,7 @@ static HRESULT parse_display_name(IAssemblyNameImpl *name, LPCWSTR szAssemblyNam
|
|||
if (!ptr)
|
||||
goto done;
|
||||
|
||||
str = ptr + 2;
|
||||
str = ptr + 1;
|
||||
while (!done)
|
||||
{
|
||||
ptr = strchrW(str, '=');
|
||||
|
@ -639,7 +639,7 @@ static HRESULT parse_display_name(IAssemblyNameImpl *name, LPCWSTR szAssemblyNam
|
|||
goto done;
|
||||
}
|
||||
|
||||
if (!(ptr2 = strstrW(ptr, separator)))
|
||||
if (!(ptr2 = strchrW(ptr, ',')))
|
||||
{
|
||||
if (!(ptr2 = strchrW(ptr, '\0')))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue