mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[MSXML3] Fix buffer overflow in BindStatusCallback_GetBindInfo. CORE-14570
This commit is contained in:
parent
054c11a02c
commit
708d26acf3
1 changed files with 1 additions and 1 deletions
|
@ -397,7 +397,7 @@ static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
|
|||
pbindinfo->dwBindVerb = This->request->verb;
|
||||
if (This->request->verb == BINDVERB_CUSTOM)
|
||||
{
|
||||
pbindinfo->szCustomVerb = CoTaskMemAlloc(SysStringByteLen(This->request->custom));
|
||||
pbindinfo->szCustomVerb = CoTaskMemAlloc(SysStringByteLen(This->request->custom)+sizeof(WCHAR));
|
||||
strcpyW(pbindinfo->szCustomVerb, This->request->custom);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue