Commit 5eae73de authored by Dimi Paun's avatar Dimi Paun Committed by Alexandre Julliard

Avoid using some LOCAL_*() functions.

parent 36f16c63
......@@ -1280,7 +1280,7 @@ HLOCAL16 WINAPI LocalReAlloc16( HLOCAL16 handle, WORD size, UINT16 flags )
if (HANDLE_FIXED(handle))
{
TRACE("Freeing fixed block.\n");
return LOCAL_Free( ds, handle );
return LocalFree16( handle );
}
else /* Moveable block */
{
......@@ -1303,7 +1303,7 @@ HLOCAL16 WINAPI LocalReAlloc16( HLOCAL16 handle, WORD size, UINT16 flags )
if (pEntry->lock == 0)
{
/* Frees block */
return LOCAL_Free( ds, handle );
return LocalFree16( handle );
}
}
return 0;
......
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