diff -Nru gdk-pixbuf-xcf-0/debian/changelog gdk-pixbuf-xcf-0.b037c59/debian/changelog --- gdk-pixbuf-xcf-0/debian/changelog 2011-10-05 14:26:26.000000000 +0000 +++ gdk-pixbuf-xcf-0.b037c59/debian/changelog 2012-09-29 00:34:52.000000000 +0000 @@ -1,5 +1,5 @@ -gdk-pixbuf-xcf (0-3~ppa4) oneiric; urgency=low +gdk-pixbuf-xcf (0.b037c59-4~ppa4) oneiric; urgency=low * - -- Sawa (ikoinoba) Fri, 30 Sep 2011 00:20:25 +0900 + -- Sawa (ikoinoba) Wed, 26 Sep 2012 21:57:59 +0900 diff -Nru gdk-pixbuf-xcf-0/debian/compat gdk-pixbuf-xcf-0.b037c59/debian/compat --- gdk-pixbuf-xcf-0/debian/compat 2010-10-28 15:06:53.000000000 +0000 +++ gdk-pixbuf-xcf-0.b037c59/debian/compat 2012-09-23 10:31:32.000000000 +0000 @@ -1 +1 @@ -7 +8 diff -Nru gdk-pixbuf-xcf-0/debian/control gdk-pixbuf-xcf-0.b037c59/debian/control --- gdk-pixbuf-xcf-0/debian/control 2011-10-05 14:32:25.000000000 +0000 +++ gdk-pixbuf-xcf-0.b037c59/debian/control 2012-04-19 10:10:42.000000000 +0000 @@ -1,5 +1,5 @@ Source: gdk-pixbuf-xcf -Priority: extra +Priority: optional Maintainer: Sawa (ikoinoba) Standards-Version: 3.8.4 Section: libs @@ -9,5 +9,7 @@ Package: libgdk-pixbuf2.0-xcf Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} +Pre-Depends: ${misc:Pre-Depends} +Multi-Arch: same Description: GDK Pixbuf library for XCF GdkPixbuf loader for GIMP format (XCF) diff -Nru gdk-pixbuf-xcf-0/io-xcf.c gdk-pixbuf-xcf-0.b037c59/io-xcf.c --- gdk-pixbuf-xcf-0/io-xcf.c 2010-03-05 12:36:07.000000000 +0000 +++ gdk-pixbuf-xcf-0.b037c59/io-xcf.c 2012-05-30 09:19:19.000000000 +0000 @@ -283,7 +283,7 @@ int i; if (*ox < 0) { for (i=0; i<*th; i++) { - memmove (ptr + 4 * i * (*tw + *ox), ptr + 4 * i * (*tw), 4 * (*tw + *ox)); + memmove (ptr + 4 * i * (*tw + *ox), ptr + 4 * ( i * *tw - *ox), 4 * (*tw + *ox)); } *tw = *tw + *ox; *ox = 0;