Commit a0a516d6 authored by Eric Kohl's avatar Eric Kohl Committed by Alexandre Julliard

Fixes little pointer bug in DPA_DeletePtr().

parent 16bdc256
......@@ -1204,7 +1204,7 @@ DPA_SetPtr (const HDPA hdpa, INT32 i, LPVOID p)
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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment