progman: Use LMEM_MOVEABLE when reallocating memory.

This commit is contained in:
Akihiro Sagawa 2013-06-01 22:01:39 +09:00 committed by Alexandre Julliard
parent 884ead472b
commit 4874b806f3
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ static BOOL GRPFILE_ReadFileToBuffer(LPCSTR path, HLOCAL *phBuffer,
{
size += len;
hNewBuffer = LocalReAlloc(hBuffer, size + MALLOCHUNK + 1,
LMEM_FIXED);
LMEM_MOVEABLE);
if (!hNewBuffer)
{
LocalFree(hBuffer);