1diff --git a/third_party/libtiff/tif_pixarlog.c b/third_party/libtiff/tif_pixarlog.c 2index 5c0346b6e..2e22b3318 100644 3--- a/third_party/libtiff/tif_pixarlog.c 4+++ b/third_party/libtiff/tif_pixarlog.c 5@@ -882,7 +882,7 @@ static int PixarLogDecode(TIFF *tif, uint8_t *op, tmsize_t occ, uint16_t s) 6 return (0); 7 } 8 /* Check that we will not fill more than what was allocated */ 9- if ((tmsize_t)sp->stream.avail_out > sp->tbuf_size) 10+ if (sp->tbuf_size < 0 || sp->stream.avail_out > (uInt) sp->tbuf_size) 11 { 12 TIFFErrorExtR(tif, module, "sp->stream.avail_out > sp->tbuf_size"); 13 return (0); 14