qmgr: Memory allocation size fix.

This commit is contained in:
Andrew Talbot 2008-05-10 16:25:29 +01:00 committed by Alexandre Julliard
parent ddfbe4ee1f
commit 801c969884
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ static const IBindStatusCallbackVtbl DLBindStatusCallback_Vtbl =
static DLBindStatusCallback *DLBindStatusCallbackConstructor(
BackgroundCopyFileImpl *file)
{
DLBindStatusCallback *This = HeapAlloc(GetProcessHeap(), 0, sizeof This);
DLBindStatusCallback *This = HeapAlloc(GetProcessHeap(), 0, sizeof *This);
if (!This)
return NULL;