freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype][master] * src/psmodule.c (ps_unicodes_init): Ig


From: Werner Lemberg (@wl)
Subject: [Git][freetype/freetype][master] * src/psmodule.c (ps_unicodes_init): Ignore empty glyph names.
Date: Tue, 27 Apr 2021 11:28:56 +0000

Werner Lemberg pushed to branch master at FreeType / FreeType

Commits:

2 changed files:

Changes:

  • ChangeLog
    1
    +2021-04-27  Werner Lemberg  <wl@gnu.org>
    
    2
    +
    
    3
    +	* src/psmodule.c (ps_unicodes_init): Ignore empty glyph names.
    
    4
    +
    
    5
    +	Reported as
    
    6
    +
    
    7
    +	  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=33637
    
    8
    +
    
    1 9
     2021-04-26  Alexei Podtelezhnikov  <apodtele@gmail.com>
    
    2 10
     
    
    3 11
     	* src/sfnt/sfobjs.c (sfnt_init_face): Revert macro change.
    

  • src/psnames/psmodule.c
    ... ... @@ -343,7 +343,7 @@
    343 343
             const char*  gname = get_glyph_name( glyph_data, n );
    
    344 344
     
    
    345 345
     
    
    346
    -        if ( gname )
    
    346
    +        if ( gname && *gname )
    
    347 347
             {
    
    348 348
               ps_check_extra_glyph_name( gname, n,
    
    349 349
                                          extra_glyphs, extra_glyph_list_states );
    


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]