commit | a0a516d60ee4b835876767d20030663fd97ab7fb | [log] [tgz] |
---|---|---|
author | Eric Kohl <ekohl@abo.rhein-zeitung.de> | Tue Feb 02 10:33:08 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Feb 02 10:33:08 1999 +0000 |
tree | 4f1e561d00e5a8e95c91f34fbf689df1e827823f | |
parent | 16bdc256b9626ab40fbfffb5ccd67593674be144 [diff] |
Fixes little pointer bug in DPA_DeletePtr().
diff --git a/dlls/comctl32/comctl32undoc.c b/dlls/comctl32/comctl32undoc.c index a8292fc..41cb935 100644 --- a/dlls/comctl32/comctl32undoc.c +++ b/dlls/comctl32/comctl32undoc.c
@@ -1204,7 +1204,7 @@ LPVOID WINAPI DPA_DeletePtr (const HDPA hdpa, INT32 i) { - LPVOID lpDest, lpSrc, lpTemp = NULL; + LPVOID *lpDest, *lpSrc, lpTemp = NULL; INT32 nSize; TRACE (commctrl, "(%p %d)\n", hdpa, i);