Apply the same fix to dwnl

svn path=/trunk/; revision=33544
This commit is contained in:
Pierre Schweitzer 2008-05-17 08:20:32 +00:00
parent 7f3429142d
commit 982ea317be

View file

@ -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;