[PATCH] setupx.dll16: Fixed bad sizeof() (Coverity)

Marcus Meissner marcus at jet.franken.de
Sun Oct 16 17:26:21 CDT 2011


Hi,

also had a bad sizeof() call. CID 3800

Ciao, Marcus
---
 dlls/setupx.dll16/virtcopy.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/setupx.dll16/virtcopy.c b/dlls/setupx.dll16/virtcopy.c
index 5137548..f2ce4e8 100644
--- a/dlls/setupx.dll16/virtcopy.c
+++ b/dlls/setupx.dll16/virtcopy.c
@@ -224,10 +224,10 @@ static RETERR16 VCP_VirtnodeCreate(const VCPFILESPEC *vfsSrc, const VCPFILESPEC
 	vn_num += 20;
 	if (pvnlist)
 	    pvnlist = HeapReAlloc(heap, HEAP_ZERO_MEMORY, pvnlist,
-				sizeof(LPVIRTNODE *) * vn_num);
+				sizeof(*pvnlist) * vn_num);
 	else
 	    pvnlist = HeapAlloc(heap, HEAP_ZERO_MEMORY,
-				sizeof(LPVIRTNODE *) * vn_num);
+				sizeof(*pvnlist) * vn_num);
     }
     pvnlist[vn_last] = HeapAlloc(heap, HEAP_ZERO_MEMORY, sizeof(VIRTNODE));
     lpvn = pvnlist[vn_last];
-- 
1.7.3.4




More information about the wine-patches mailing list