aboutsummaryrefslogtreecommitdiffstats
path: root/main/gdk-pixbuf/CVE-2017-6314.patch
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2017-06-16 08:24:59 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2017-06-16 08:57:04 +0000
commit3fcc32c9ff95c730f11a5370f3db849a273fb08a (patch)
tree43746dba7df7890ed519eb48ceea3a467f0d525e /main/gdk-pixbuf/CVE-2017-6314.patch
parent40b12cafc8b73a878ba13a8d70990b065f857adc (diff)
downloadaports-3fcc32c9ff95c730f11a5370f3db849a273fb08a.tar.bz2
aports-3fcc32c9ff95c730f11a5370f3db849a273fb08a.tar.xz
main/gdk-pixbuf: security fix (CVE-2017-6314)
Partially fixes #6958 CVE-2017-6311-2: patches don't apply CVE-2017-6313: fix N/A, https://bugzilla.gnome.org/show_bug.cgi?id=779016
Diffstat (limited to 'main/gdk-pixbuf/CVE-2017-6314.patch')
-rw-r--r--main/gdk-pixbuf/CVE-2017-6314.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/main/gdk-pixbuf/CVE-2017-6314.patch b/main/gdk-pixbuf/CVE-2017-6314.patch
new file mode 100644
index 0000000000..a345fe03fd
--- /dev/null
+++ b/main/gdk-pixbuf/CVE-2017-6314.patch
@@ -0,0 +1,16 @@
+--- gdk-pixbuf-2.30.8/gdk-pixbuf/io-tiff.c
++++ gdk-pixbuf-2.30.8/gdk-pixbuf/io-tiff.c
+@@ -458,9 +458,12 @@ make_available_at_least (TiffContext *co
+ need_alloc = context->used + needed;
+ if (need_alloc > context->allocated) {
+ guint new_size = 1;
+- while (new_size < need_alloc)
++ while (new_size && (new_size < need_alloc))
+ new_size *= 2;
+
++ if(!(new_size))
++ return FALSE;
++
+ new_buffer = g_try_realloc (context->buffer, new_size);
+ if (new_buffer) {
+ context->buffer = new_buffer;