From d129587b5d568b0ff5300386f1e1b706c349f38e Mon Sep 17 00:00:00 2001 From: Koop Mast Date: Wed, 5 Aug 2015 19:13:24 +0000 Subject: The FreeBSD GNOME team proudly presents GNOME 3.16 for FreeBSD. The offical GNOME 3.16 release notes can be found at https://help.gnome.org/misc/release-notes/3.16/ Upgrade instructions for port users: Delete the old tracker package with: # pkg delete -f tracker And user port upgrade tool of choice to upgrade. Thanks to Antoine Brodin for running the exp-runs. This release was made possible by the following people: Gustau Perez Ting-Wei_Lan PR: 201980 --- .../files/patch-gdk-pixbuf_gdk-pixbuf-loader.c | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 graphics/gdk-pixbuf2/files/patch-gdk-pixbuf_gdk-pixbuf-loader.c (limited to 'graphics/gdk-pixbuf2/files/patch-gdk-pixbuf_gdk-pixbuf-loader.c') diff --git a/graphics/gdk-pixbuf2/files/patch-gdk-pixbuf_gdk-pixbuf-loader.c b/graphics/gdk-pixbuf2/files/patch-gdk-pixbuf_gdk-pixbuf-loader.c deleted file mode 100644 index b62f8fc62666..000000000000 --- a/graphics/gdk-pixbuf2/files/patch-gdk-pixbuf_gdk-pixbuf-loader.c +++ /dev/null @@ -1,25 +0,0 @@ -From 74c418ba2e41ab9e2287420378a6192788b1fab6 Mon Sep 17 00:00:00 2001 -From: Sarita Rawat -Date: Fri, 5 Jun 2015 06:56:00 +0000 -Subject: Avoid a possible divide-by-zero - -Pointed out in - -https://bugzilla.gnome.org/show_bug.cgi?id=750440 - -diff --git a/gdk-pixbuf/gdk-pixbuf-loader.c b/gdk-pixbuf/gdk-pixbuf-loader.c -index 65845ed..668b703 100644 ---- gdk-pixbuf/gdk-pixbuf-loader.c -+++ gdk-pixbuf/gdk-pixbuf-loader.c -@@ -330,7 +330,7 @@ gdk_pixbuf_loader_prepare (GdkPixbuf *pixbuf, - else - anim = gdk_pixbuf_non_anim_new (pixbuf); - -- if (priv->needs_scale) { -+ if (priv->needs_scale && width != 0 && height != 0) { - priv->animation = GDK_PIXBUF_ANIMATION (_gdk_pixbuf_scaled_anim_new (anim, - (double) priv->width / width, - (double) priv->height / height, --- -cgit v0.10.2 - -- cgit v1.2.3