quartz: Ensure error text is terminated with NUL character.
Signed-off-by: Akihiro Sagawa <sagawa.aki@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7b8554b3b8
commit
fc4ef8692e
|
@ -313,7 +313,13 @@ DWORD WINAPI AMGetErrorTextA(HRESULT hr, LPSTR buffer, DWORD maxlen)
|
|||
return 0;
|
||||
|
||||
res = AMGetErrorTextW(hr, errorW, ARRAY_SIZE(errorW));
|
||||
return WideCharToMultiByte(CP_ACP, 0, errorW, res, buffer, maxlen, 0, 0);
|
||||
if (!res)
|
||||
return 0;
|
||||
|
||||
res = WideCharToMultiByte(CP_ACP, 0, errorW, -1, NULL, 0, 0, 0);
|
||||
if (res > maxlen || !res)
|
||||
return 0;
|
||||
return WideCharToMultiByte(CP_ACP, 0, errorW, -1, buffer, maxlen, 0, 0) - 1;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in New Issue