[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.
This commit is contained in:
Alexei Podtelezhnikov 2021-04-23 00:05:18 -04:00
parent 23f85c8a98
commit a0fb6dbcd9
4 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2021-04-23 Alexei Podtelezhnikov <apodtele@gmail.com>
[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.
2021-04-22 Alexei Podtelezhnikov <apodtele@gmail.com>
[cache] Optimize SBit copying.

View File

@ -276,7 +276,7 @@ THE SOFTWARE.
char* s;
if ( FT_ALLOC( face->style_name, len ) )
if ( FT_QALLOC( face->style_name, len ) )
return error;
s = face->style_name;

View File

@ -1368,7 +1368,7 @@ THE SOFTWARE.
char* s;
if ( FT_ALLOC( face->style_name, len ) )
if ( FT_QALLOC( face->style_name, len ) )
return error;
s = face->style_name;

View File

@ -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;