summaryrefslogtreecommitdiff
path: root/src/winfonts
diff options
context:
space:
mode:
authorAlexei Podtelezhnikov <apodtele@gmail.com>2021-04-23 00:05:18 -0400
committerAlexei Podtelezhnikov <apodtele@gmail.com>2021-04-23 00:05:18 -0400
commita0fb6dbcd9ecac640fd34d97cf332c32df7465af (patch)
tree992283d88dcf2d8f7dc55d05295c6835a76f2906 /src/winfonts
parent23f85c8a981e1af9f36a838055865d8e7a0fb787 (diff)
downloadfreetype2-a0fb6dbcd9ecac640fd34d97cf332c32df7465af.tar.gz
[pcf,bdf,winfonts] s/FT_ALLOC/FT_QALLOC/ for initialized buffers.
* src/pcf/pcfread.c (pcf_interpret_style): Do not zero out the buffer. * src/bdf/bdfdrivr.c (bdf_interpret_style): Ditto. * src/winfonts/winfnt.c (FNT_Face_Init, FNT_Load_Glyph): Ditto.
Diffstat (limited to 'src/winfonts')
-rw-r--r--src/winfonts/winfnt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/winfonts/winfnt.c b/src/winfonts/winfnt.c
index 17b068f21..1d52bb600 100644
--- a/src/winfonts/winfnt.c
+++ b/src/winfonts/winfnt.c
@@ -888,7 +888,7 @@
/* NULL byte -- the frame is erroneously one byte too small. */
/* We thus allocate one more byte, setting it explicitly to */
/* zero. */
- if ( FT_ALLOC( font->family_name, family_size + 1 ) )
+ if ( FT_QALLOC( font->family_name, family_size + 1 ) )
goto Fail;
FT_MEM_COPY( font->family_name,
@@ -1094,7 +1094,7 @@
/* note: since glyphs are stored in columns and not in rows we */
/* can't use ft_glyphslot_set_bitmap */
- if ( FT_ALLOC_MULT( bitmap->buffer, bitmap->rows, pitch ) )
+ if ( FT_QALLOC_MULT( bitmap->buffer, bitmap->rows, pitch ) )
goto Exit;
column = (FT_Byte*)bitmap->buffer;