mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 04:13:32 +00:00
Apply the same fix to dwnl
svn path=/trunk/; revision=33544
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user