mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
Apply the same fix to dwnl
svn path=/trunk/; revision=33544
This commit is contained in:
parent
7f3429142d
commit
982ea317be
1 changed files with 1 additions and 3 deletions
|
@ -304,12 +304,10 @@ CreateBindStatusCallback(void)
|
|||
{
|
||||
CBindStatusCallback *This;
|
||||
|
||||
This = HeapAlloc(GetProcessHeap(), 0, sizeof(*This));
|
||||
This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*This));
|
||||
if (This == NULL)
|
||||
return NULL;
|
||||
|
||||
ZeroMemory(This, sizeof(*This));
|
||||
|
||||
This->lpIBindStatusCallbackVtbl = &vtblIBindStatusCallback;
|
||||
This->ref = 1;
|
||||
|
||||
|
|
Loading…
Reference in a new issue