diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-12-01 18:01:04 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-12-01 18:01:04 +0000 |
commit | d121ff38fff65ed7267690946402a1e59692ad2b (patch) | |
tree | 1f1604cb6b9f45e89281ba3ca9c6387ff83513d6 /user/tiff/CVE-2017-18013.patch | |
parent | b84153e594fa34e6593014f6f3e39acc4165fad7 (diff) | |
download | packages-d121ff38fff65ed7267690946402a1e59692ad2b.tar.gz packages-d121ff38fff65ed7267690946402a1e59692ad2b.tar.bz2 packages-d121ff38fff65ed7267690946402a1e59692ad2b.tar.xz packages-d121ff38fff65ed7267690946402a1e59692ad2b.zip |
user/tiff: bugfix bump to 4.0.10
Diffstat (limited to 'user/tiff/CVE-2017-18013.patch')
-rw-r--r-- | user/tiff/CVE-2017-18013.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/user/tiff/CVE-2017-18013.patch b/user/tiff/CVE-2017-18013.patch deleted file mode 100644 index 5a1d90082..000000000 --- a/user/tiff/CVE-2017-18013.patch +++ /dev/null @@ -1,34 +0,0 @@ -From c6f41df7b581402dfba3c19a1e3df4454c551a01 Mon Sep 17 00:00:00 2001 -From: Even Rouault <even.rouault@spatialys.com> -Date: Sun, 31 Dec 2017 15:09:41 +0100 -Subject: [PATCH] libtiff/tif_print.c: TIFFPrintDirectory(): fix null pointer dereference on corrupted file. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2770 - ---- - libtiff/tif_print.c | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/libtiff/tif_print.c b/libtiff/tif_print.c -index 9959d35..8deceb2 100644 ---- a/libtiff/tif_print.c -+++ b/libtiff/tif_print.c -@@ -665,13 +665,13 @@ TIFFPrintDirectory(TIFF* tif, FILE* fd, long flags) - #if defined(__WIN32__) && (defined(_MSC_VER) || defined(__MINGW32__)) - fprintf(fd, " %3lu: [%8I64u, %8I64u]\n", - (unsigned long) s, -- (unsigned __int64) td->td_stripoffset[s], -- (unsigned __int64) td->td_stripbytecount[s]); -+ td->td_stripoffset ? (unsigned __int64) td->td_stripoffset[s] : 0, -+ td->td_stripbytecount ? (unsigned __int64) td->td_stripbytecount[s] : 0); - #else - fprintf(fd, " %3lu: [%8llu, %8llu]\n", - (unsigned long) s, -- (unsigned long long) td->td_stripoffset[s], -- (unsigned long long) td->td_stripbytecount[s]); -+ td->td_stripoffset ? (unsigned long long) td->td_stripoffset[s] : 0, -+ td->td_stripbytecount ? (unsigned long long) td->td_stripbytecount[s] : 0); - #endif - } - } --- -libgit2 0.26.0 - |