urlmon: Don't use -1 length in WideCharToMultiByte call.
This commit is contained in:
parent
c94e646fc1
commit
d43de316c3
|
@ -445,7 +445,7 @@ static HRESULT WINAPI SecManagerImpl_GetSecurityId(IInternetSecurityManager *ifa
|
||||||
return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
|
return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
|
||||||
}
|
}
|
||||||
|
|
||||||
WideCharToMultiByte(CP_ACP, 0, url, -1, (LPSTR)pbSecurityId, -1, NULL, NULL);
|
WideCharToMultiByte(CP_ACP, 0, url, -1, (LPSTR)pbSecurityId, len, NULL, NULL);
|
||||||
heap_free(url);
|
heap_free(url);
|
||||||
|
|
||||||
*(DWORD*)(pbSecurityId+len) = zone;
|
*(DWORD*)(pbSecurityId+len) = zone;
|
||||||
|
|
Loading…
Reference in New Issue