summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2017-01-11 16:33:34 +0000
committerEven Rouault <even.rouault@spatialys.com>2017-01-11 16:33:34 +0000
commit50b48786d5a10125b5a4955ce49bbd48c6c56cfc (patch)
tree68fe0d47cc4b7465335677082d351e694d39de89 /ChangeLog
parent153418c943586e3451b660a1c1060aec46c19fa0 (diff)
downloadlibtiff-git-50b48786d5a10125b5a4955ce49bbd48c6c56cfc.tar.gz
* libtiff/tif_read.c: avoid potential undefined behaviour on signed integer
addition in TIFFReadRawStrip1() in isMapped() case. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2650
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8e202a2c..3e314644 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2017-01-11 Even Rouault <even.rouault at spatialys.com>
+ * libtiff/tif_read.c: avoid potential undefined behaviour on signed integer
+ addition in TIFFReadRawStrip1() in isMapped() case.
+ Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2650
+
+2017-01-11 Even Rouault <even.rouault at spatialys.com>
+
* libtiff/tif_jpeg.c: validate BitsPerSample in JPEGSetupEncode() to avoid
undefined behaviour caused by invalid shift exponent.
Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2648