Fix Savannah bug #30168.
* src/pfr/pfrgload.c (pfr_glyph_load_compound): Limit the number of subglyphs to avoid endless recursion.
This commit is contained in:
parent
90b07bd541
commit
ddc4b136d6
@ -1,3 +1,10 @@
|
||||
2010-06-21 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Fix Savannah bug #30168.
|
||||
|
||||
* src/pfr/pfrgload.c (pfr_glyph_load_compound): Limit the number of
|
||||
subglyphs to avoid endless recursion.
|
||||
|
||||
2010-06-20 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
Fix Savannah bug #30145.
|
||||
|
@ -4,7 +4,7 @@
|
||||
/* */
|
||||
/* FreeType PFR glyph loader (body). */
|
||||
/* */
|
||||
/* Copyright 2002, 2003, 2005, 2007 by */
|
||||
/* Copyright 2002, 2003, 2005, 2007, 2010 by */
|
||||
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
||||
/* */
|
||||
/* This file is part of the FreeType project, and may only be used, */
|
||||
@ -598,6 +598,16 @@
|
||||
FT_UInt new_max = ( org_count + count + 3 ) & (FT_UInt)-4;
|
||||
|
||||
|
||||
/* we arbitrarily limit the number of subglyphs */
|
||||
/* to avoid endless recursion */
|
||||
if ( new_max > 64 )
|
||||
{
|
||||
error = PFR_Err_Invalid_Table;
|
||||
FT_ERROR(( "pfr_glyph_load_compound:"
|
||||
" too many compound glyphs components\n" ));
|
||||
goto Exit;
|
||||
}
|
||||
|
||||
if ( FT_RENEW_ARRAY( glyph->subs, glyph->max_subs, new_max ) )
|
||||
goto Exit;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user