From 4ee73e69b5e7a01852967f6609a551b01c0311d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Tue, 30 Oct 2012 20:06:57 +0100 Subject: [PATCH] usp10: Avoid memory leak in ScriptTextOut (coverity). --- dlls/usp10/usp10.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c index 9bd55b4618e..7f181d0206f 100644 --- a/dlls/usp10/usp10.c +++ b/dlls/usp10/usp10.c @@ -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];