Module: wine Branch: master Commit: b5ca0a9c2a55b0420cda6cea931d1490eda66bb8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b5ca0a9c2a55b0420cda6cea93...
Author: Huw Davies huw@codeweavers.com Date: Wed Dec 2 12:04:08 2009 +0000
gdi32: Fix incorrect initialization of path array.
Found by Valgrind.
---
dlls/gdi32/path.c | 15 ++++++--------- 1 files changed, 6 insertions(+), 9 deletions(-)
diff --git a/dlls/gdi32/path.c b/dlls/gdi32/path.c index 88b7b0a..4b035d7 100644 --- a/dlls/gdi32/path.c +++ b/dlls/gdi32/path.c @@ -1852,7 +1852,7 @@ static BOOL PATH_WidenPath(DC *dc) { INT i, j, numStrokes, penWidth, penWidthIn, penWidthOut, size, penStyle; BOOL ret = FALSE; - GdiPath *pPath, *pNewPath, **pStrokes, *pUpPath, *pDownPath; + GdiPath *pPath, *pNewPath, **pStrokes = NULL, *pUpPath, *pDownPath; EXTLOGPEN *elp; DWORD obj_type, joint, endcap, penType;
@@ -1907,13 +1907,6 @@ static BOOL PATH_WidenPath(DC *dc)
numStrokes = 0;
- pStrokes = HeapAlloc(GetProcessHeap(), 0, numStrokes * sizeof(GdiPath*)); - pStrokes[0] = HeapAlloc(GetProcessHeap(), 0, sizeof(GdiPath)); - PATH_InitGdiPath(pStrokes[0]); - pStrokes[0]->pFlags = HeapAlloc(GetProcessHeap(), 0, pPath->numEntriesUsed * sizeof(INT)); - pStrokes[0]->pPoints = HeapAlloc(GetProcessHeap(), 0, pPath->numEntriesUsed * sizeof(POINT)); - pStrokes[0]->numEntriesUsed = 0; - for(i = 0, j = 0; i < pPath->numEntriesUsed; i++, j++) { POINT point; if((i == 0 || (pPath->pFlags[i-1] & PT_CLOSEFIGURE)) && @@ -1930,7 +1923,11 @@ static BOOL PATH_WidenPath(DC *dc) } numStrokes++; j = 0; - pStrokes = HeapReAlloc(GetProcessHeap(), 0, pStrokes, numStrokes * sizeof(GdiPath*)); + if(numStrokes == 1) + pStrokes = HeapAlloc(GetProcessHeap(), 0, sizeof(GdiPath*)); + else + pStrokes = HeapReAlloc(GetProcessHeap(), 0, pStrokes, numStrokes * sizeof(GdiPath*)); + if(!pStrokes) return FALSE; pStrokes[numStrokes - 1] = HeapAlloc(GetProcessHeap(), 0, sizeof(GdiPath)); PATH_InitGdiPath(pStrokes[numStrokes - 1]); pStrokes[numStrokes - 1]->state = PATH_Open;