mirror of
https://github.com/reactos/wine.git
synced 2025-01-24 12:57:26 +00:00
Fixes little pointer bug in DPA_DeletePtr().
This commit is contained in:
parent
16bdc256b9
commit
a0a516d60e
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user