qmgr: Memory allocation size fix.
This commit is contained in:
parent
ddfbe4ee1f
commit
801c969884
|
@ -355,7 +355,7 @@ static const IBindStatusCallbackVtbl DLBindStatusCallback_Vtbl =
|
||||||
static DLBindStatusCallback *DLBindStatusCallbackConstructor(
|
static DLBindStatusCallback *DLBindStatusCallbackConstructor(
|
||||||
BackgroundCopyFileImpl *file)
|
BackgroundCopyFileImpl *file)
|
||||||
{
|
{
|
||||||
DLBindStatusCallback *This = HeapAlloc(GetProcessHeap(), 0, sizeof This);
|
DLBindStatusCallback *This = HeapAlloc(GetProcessHeap(), 0, sizeof *This);
|
||||||
if (!This)
|
if (!This)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue