Index: third_party/libtiff/tif_aux.c |
diff --git a/third_party/libtiff/tif_aux.c b/third_party/libtiff/tif_aux.c |
index 927150a49352deaf881631a3abd6e00e09887993..3613fbae2b73ce47d9b75bbaed18c336316633f0 100644 |
--- a/third_party/libtiff/tif_aux.c |
+++ b/third_party/libtiff/tif_aux.c |
@@ -69,7 +69,7 @@ _TIFFCheckRealloc(TIFF* tif, void* buffer, |
/* |
* XXX: Check for integer overflow. |
*/ |
- if (nmemb && elem_size && bytes / elem_size == nmemb) |
+ if (nmemb && elem_size && _TIFFIfMultiplicationOverflow(nmemb, elem_size))//&& bytes / elem_size == nmemb |
Tom Sepez
2016/08/26 23:05:28
remove the code following the //
|
cp = _TIFFrealloc(buffer, bytes); |
if (cp == NULL) { |