kernel32: Fix memory leak in WCEL_FindPrevInHist.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
16c51fbe17
commit
d44ec680da
|
@ -469,6 +469,7 @@ static void WCEL_FindPrevInHist(WCEL_Context* ctx)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
HeapFree(GetProcessHeap(), 0, data);
|
||||||
} while (ctx->histPos != startPos);
|
} while (ctx->histPos != startPos);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue