summaryrefslogtreecommitdiffstats
path: root/abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-12-02 23:59:48 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-12-02 23:59:48 (GMT)
commit116d03af8c83524c31ad0213113cfa4091dbadfc (patch)
treea2e68cf8b6402bb2f6d0d835c310e2599aeb6235 /abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch
parente509c70e498901466c0bfba06e114b77838a5ca3 (diff)
downloadlinhes_pkgbuild-116d03af8c83524c31ad0213113cfa4091dbadfc.zip
linhes_pkgbuild-116d03af8c83524c31ad0213113cfa4091dbadfc.tar.gz
linhes_pkgbuild-116d03af8c83524c31ad0213113cfa4091dbadfc.tar.bz2
Housekeeping
Diffstat (limited to 'abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch')
-rw-r--r--abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch b/abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch
deleted file mode 100644
index 67a1c07..0000000
--- a/abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- freetype-2.2.1/src/psaux/psobjs.c~ 2006-04-26 16:38:17.000000000 +0200
-+++ freetype-2.2.1/src/psaux/psobjs.c 2006-09-10 15:01:13.000000000 +0200
-@@ -165,6 +165,11 @@
- return PSaux_Err_Invalid_Argument;
- }
-
-+ if ( length < 0 ) {
-+ FT_ERROR(( "ps_table_add: invalid length\n" ));
-+ return PSaux_Err_Invalid_Argument;
-+ }
-+
- /* grow the base block if needed */
- if ( table->cursor + length > table->capacity )
- {