Hello community, here is the log from the commit of package fontforge for openSUSE:Factory checked in at 2014-03-10 12:31:21 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fontforge (Old) and /work/SRC/openSUSE:Factory/.fontforge.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fontforge" Changes: -------- --- /work/SRC/openSUSE:Factory/fontforge/fontforge.changes 2013-12-09 07:05:24.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.fontforge.new/fontforge.changes 2014-03-10 12:31:25.000000000 +0100 @@ -1,0 +2,5 @@ +Sun Mar 9 13:40:08 UTC 2014 - [email protected] + +- fontforge-arraysubscript.patch: Fix invalid array subscript + +------------------------------------------------------------------- New: ---- fontforge-arraysubscript.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fontforge.spec ++++++ --- /var/tmp/diff_new_pack.oTazGB/_old 2014-03-10 12:31:26.000000000 +0100 +++ /var/tmp/diff_new_pack.oTazGB/_new 2014-03-10 12:31:26.000000000 +0100 @@ -34,6 +34,8 @@ # PATCH-FIX-OPENSUSE fontforge-python-module-name.diff -- change python module name according to naming policy Patch3: fontforge-python-module-name.diff Patch4: fontforge-fixgiflib.patch +# PATCH-FIX-UPSTREAM http://sourceforge.net/p/fontforge/git/ci/9ae25e0 +Patch5: fontforge-arraysubscript.patch BuildRequires: cairo-devel BuildRequires: fdupes @@ -104,6 +106,7 @@ %if 0%{?suse_version} > 1230 %patch4 -p1 %endif +%patch5 -p1 mkdir docs tar -jxvf %{SOURCE1} -C docs ++++++ fontforge-arraysubscript.patch ++++++ Index: fontforge-20120731-b/fontforge/contextchain.c =================================================================== --- fontforge-20120731-b.orig/fontforge/contextchain.c +++ fontforge-20120731-b/fontforge/contextchain.c @@ -928,7 +928,7 @@ return; uc_strcpy(ubuf,buf); } else { ubuf[0]=' '; - utf82u_strncpy(ubuf-1,classes[cols*r+0].u.md_str,sizeof(ubuf)/sizeof(ubuf[0])-2 ); + utf82u_strncpy(ubuf+1,classes[cols*r+0].u.md_str,sizeof(ubuf)/sizeof(ubuf[0])-2 ); ubuf[sizeof(ubuf)/sizeof(ubuf[0])-2] = '\0'; uc_strcat(ubuf," "); } -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
