diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-04-14 12:43:35 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-04-14 22:51:10 +0200 |
commit | 779676f62d56774c6290dabe4a1e3727f1cb834d (patch) | |
tree | f9639112fc7726160698d36308a8d5cef03151e3 /package/imlib2/0007-fix-compilation-issues-with-musl.patch | |
parent | 21c89819a4ab852fc978c0abe5b7e287a224f37e (diff) | |
download | buildroot-779676f62d56774c6290dabe4a1e3727f1cb834d.tar.gz buildroot-779676f62d56774c6290dabe4a1e3727f1cb834d.zip |
imlib2: security bump to version 1.4.8
Fixes:
CVE-2016-3994 - out of bound read in GIF loader
CVE-2011-5326 - divide by zero on 2x1 ellipse
Switch to sourceforge hashes.
And drop all previous patches, they're upstream, yay.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/imlib2/0007-fix-compilation-issues-with-musl.patch')
-rw-r--r-- | package/imlib2/0007-fix-compilation-issues-with-musl.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/package/imlib2/0007-fix-compilation-issues-with-musl.patch b/package/imlib2/0007-fix-compilation-issues-with-musl.patch deleted file mode 100644 index 50e88a230f..0000000000 --- a/package/imlib2/0007-fix-compilation-issues-with-musl.patch +++ /dev/null @@ -1,31 +0,0 @@ -From bdfa1169c549122a8dc848b84469458101adeb20 Mon Sep 17 00:00:00 2001 -From: Brendan Heading <brendanheading@gmail.com> -Date: Mon, 3 Aug 2015 12:44:55 +0100 -Subject: [PATCH 1/1] fix compilation issues with musl - -Using time_t strictly requires time.h to be included. - -NOTE I've stuck to the convention on this project where most of the -files appear to pick up most of their headers by including "common.h". - -Upstream-status: pending -Signed-off-by: Brendan Heading <brendanheading@gmail.com> ---- - src/lib/common.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/lib/common.h b/src/lib/common.h -index 798965f..9053826 100644 ---- a/src/lib/common.h -+++ b/src/lib/common.h -@@ -9,6 +9,7 @@ - #include <config.h> - #include <string.h> - #include <math.h> -+#include <time.h> - #ifdef WITH_DMALLOC - #include <dmalloc.h> - #endif --- -2.4.3 - |