Commit 801c9698 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

qmgr: Memory allocation size fix.

parent ddfbe4ee
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment