setupx.dll16: Fixed bad sizeof() (Coverity).

This commit is contained in:
Marcus Meissner 2011-10-17 00:26:21 +02:00 committed by Alexandre Julliard
parent 4a38b10a56
commit 68f8eff5e0
1 changed files with 2 additions and 2 deletions

View File

@ -224,10 +224,10 @@ static RETERR16 VCP_VirtnodeCreate(const VCPFILESPEC *vfsSrc, const VCPFILESPEC
vn_num += 20; vn_num += 20;
if (pvnlist) if (pvnlist)
pvnlist = HeapReAlloc(heap, HEAP_ZERO_MEMORY, pvnlist, pvnlist = HeapReAlloc(heap, HEAP_ZERO_MEMORY, pvnlist,
sizeof(LPVIRTNODE *) * vn_num); sizeof(*pvnlist) * vn_num);
else else
pvnlist = HeapAlloc(heap, HEAP_ZERO_MEMORY, pvnlist = HeapAlloc(heap, HEAP_ZERO_MEMORY,
sizeof(LPVIRTNODE *) * vn_num); sizeof(*pvnlist) * vn_num);
} }
pvnlist[vn_last] = HeapAlloc(heap, HEAP_ZERO_MEMORY, sizeof(VIRTNODE)); pvnlist[vn_last] = HeapAlloc(heap, HEAP_ZERO_MEMORY, sizeof(VIRTNODE));
lpvn = pvnlist[vn_last]; lpvn = pvnlist[vn_last];