mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
usp10: Avoid memory leak in ScriptTextOut (coverity).
This commit is contained in:
parent
1d3f679ef1
commit
4ee73e69b5
@ -3246,7 +3246,10 @@ HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UIN
|
||||
|
||||
rtlGlyphs = heap_alloc(cGlyphs * sizeof(WORD));
|
||||
if (!rtlGlyphs)
|
||||
{
|
||||
heap_free(lpDx);
|
||||
return E_OUTOFMEMORY;
|
||||
}
|
||||
|
||||
for (i = 0; i < cGlyphs; i++)
|
||||
rtlGlyphs[i] = pwGlyphs[cGlyphs-1-i];
|
||||
|
Loading…
Reference in New Issue
Block a user