setupx.dll16: Fixed bad sizeof() (Coverity).
This commit is contained in:
parent
4a38b10a56
commit
68f8eff5e0
|
@ -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];
|
||||||
|
|
Loading…
Reference in New Issue