mshtml: Allocate smaller cookies buffer size in HTMLDocument_get_cookie.

This commit is contained in:
Piotr Caban 2013-04-24 11:50:23 +02:00 committed by Alexandre Julliard
parent 8bc118cf17
commit b885ce8f55
1 changed files with 1 additions and 1 deletions

View File

@ -708,7 +708,7 @@ static HRESULT WINAPI HTMLDocument_get_cookie(IHTMLDocument2 *iface, BSTR *p)
return S_OK;
}
*p = SysAllocStringLen(NULL, size-1);
*p = SysAllocStringLen(NULL, size/sizeof(WCHAR)-1);
if(!*p)
return E_OUTOFMEMORY;