Module: wine Branch: master Commit: 82509d7c15c54931d1f450dcd5759df986bb33a4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=82509d7c15c54931d1f450dcd5...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Thu Mar 23 17:04:18 2017 +0300
dwrite: Handle allocation failure for main run bitmap.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/dwrite/font.c | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-)
diff --git a/dlls/dwrite/font.c b/dlls/dwrite/font.c index de8b80a..b3e2286 100644 --- a/dlls/dwrite/font.c +++ b/dlls/dwrite/font.c @@ -4899,7 +4899,7 @@ static inline BYTE *get_pixel_ptr(BYTE *ptr, DWRITE_TEXTURE_TYPE type, const REC runbounds->left - bounds->left; }
-static void glyphrunanalysis_render(struct dwrite_glyphrunanalysis *analysis, DWRITE_TEXTURE_TYPE type) +static HRESULT glyphrunanalysis_render(struct dwrite_glyphrunanalysis *analysis, DWRITE_TEXTURE_TYPE type) { static const BYTE masks[8] = {0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01}; struct dwrite_glyphbitmap glyph_bitmap; @@ -4913,13 +4913,18 @@ static void glyphrunanalysis_render(struct dwrite_glyphrunanalysis *analysis, DW hr = IDWriteFontFace_QueryInterface(analysis->run.fontFace, &IID_IDWriteFontFace4, (void **)&fontface); if (FAILED(hr)) { WARN("failed to get IDWriteFontFace4, 0x%08x\n", hr); - return; + return hr; }
size = (analysis->bounds.right - analysis->bounds.left)*(analysis->bounds.bottom - analysis->bounds.top); if (type == DWRITE_TEXTURE_CLEARTYPE_3x1) size *= 3; - analysis->bitmap = heap_alloc_zero(size); + if (!(analysis->bitmap = heap_alloc_zero(size))) { + WARN("Failed to allocate run bitmap, %s, type %s.\n", wine_dbgstr_rect(&analysis->bounds), + type == DWRITE_TEXTURE_CLEARTYPE_3x1 ? "3x1" : "1x1"); + IDWriteFontFace4_Release(fontface); + return E_OUTOFMEMORY; + }
origin.x = origin.y = 0.0f; is_rtl = analysis->run.bidiLevel & 1; @@ -5030,6 +5035,8 @@ static void glyphrunanalysis_render(struct dwrite_glyphrunanalysis *analysis, DW analysis->ascenderoffsets = NULL; analysis->run.glyphIndices = NULL; analysis->run.fontFace = NULL; + + return S_OK; }
static HRESULT WINAPI glyphrunanalysis_CreateAlphaTexture(IDWriteGlyphRunAnalysis *iface, DWRITE_TEXTURE_TYPE type, @@ -5081,8 +5088,12 @@ static HRESULT WINAPI glyphrunanalysis_CreateAlphaTexture(IDWriteGlyphRunAnalysi BYTE *src, *dst; int y;
- if (!(This->flags & RUNANALYSIS_BITMAP_READY)) - glyphrunanalysis_render(This, type); + if (!(This->flags & RUNANALYSIS_BITMAP_READY)) { + HRESULT hr; + + if (FAILED(hr = glyphrunanalysis_render(This, type))) + return hr; + }
src = get_pixel_ptr(This->bitmap, type, &runbounds, &This->bounds); dst = get_pixel_ptr(bitmap, type, &runbounds, bounds);