diff options
author | Koop Mast <kwm@FreeBSD.org> | 2015-08-05 19:13:24 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2015-08-05 19:13:24 +0000 |
commit | d129587b5d568b0ff5300386f1e1b706c349f38e (patch) | |
tree | e398c7b6ea5203fd3953999e6dd9d6c83c9ec931 /graphics/gdk-pixbuf2/files/patch-gdk-pixbuf_gdk-pixbuf-loader.c | |
parent | Bugfix upgrade to new upstream release 2.3.8. (diff) |
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
Diffstat (limited to 'graphics/gdk-pixbuf2/files/patch-gdk-pixbuf_gdk-pixbuf-loader.c')
-rw-r--r-- | graphics/gdk-pixbuf2/files/patch-gdk-pixbuf_gdk-pixbuf-loader.c | 25 |
1 files changed, 0 insertions, 25 deletions
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 <sarita.rawat@samsung.com> -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 - |