diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-07-07 07:28:39 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-07-07 07:28:39 +0800 |
commit | cca0f5d8be2e9b99a3f57f676bb35b055af25e49 (patch) | |
tree | 59135b70c2a361614f47b533159cae02a8daf091 /print | |
parent | 04caaf2476e7e1eb7bdd2aa02d2ed9767ce8ab31 (diff) | |
download | marcuscom-ports-cca0f5d8be2e9b99a3f57f676bb35b055af25e49.tar marcuscom-ports-cca0f5d8be2e9b99a3f57f676bb35b055af25e49.tar.gz marcuscom-ports-cca0f5d8be2e9b99a3f57f676bb35b055af25e49.tar.bz2 marcuscom-ports-cca0f5d8be2e9b99a3f57f676bb35b055af25e49.tar.lz marcuscom-ports-cca0f5d8be2e9b99a3f57f676bb35b055af25e49.tar.xz marcuscom-ports-cca0f5d8be2e9b99a3f57f676bb35b055af25e49.tar.zst marcuscom-ports-cca0f5d8be2e9b99a3f57f676bb35b055af25e49.zip |
Commit the removal of this patch since it is already present in 2.3.5.
Reported by: Yasuda Keisuke <kysd@po.harenet.ne.jp>
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9147 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'print')
-rw-r--r-- | print/freetype2/files/patch-src_truetype_ttgload.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/print/freetype2/files/patch-src_truetype_ttgload.c b/print/freetype2/files/patch-src_truetype_ttgload.c deleted file mode 100644 index 803bdeeb3..000000000 --- a/print/freetype2/files/patch-src_truetype_ttgload.c +++ /dev/null @@ -1,32 +0,0 @@ ---- src/truetype/ttgload.c.orig Tue Feb 14 12:44:56 2006 -+++ src/truetype/ttgload.c Fri May 18 13:05:34 2007 -@@ -269,7 +269,11 @@ - - n_points = 0; - if ( n_contours > 0 ) -+ { - n_points = cont[-1] + 1; -+ if ( n_points < 0 ) -+ goto Invalid_Outline; -+ } - - /* note that we will add four phantom points later */ - error = FT_GLYPHLOADER_CHECK_POINTS( gloader, n_points + 4, 0 ); -@@ -677,7 +681,7 @@ - FT_GlyphLoader gloader = loader->gloader; - FT_Error error = TT_Err_Ok; - FT_Outline* outline; -- FT_UInt n_points; -+ FT_Int n_points; - - - outline = &gloader->current.outline; -@@ -704,7 +708,7 @@ - /* Deltas apply to the unscaled data. */ - FT_Vector* deltas; - FT_Memory memory = loader->face->memory; -- FT_UInt i; -+ FT_Int i; - - - error = TT_Vary_Get_Glyph_Deltas( (TT_Face)(loader->face), |