summaryrefslogtreecommitdiff
path: root/libtiff
Commit message (Expand)AuthorAgeFilesLines
* Fix nmake build mistakes in my last commit:Bob Friesenhahn2020-01-261-1/+3
* Add nmake build support for manually configuring the 'port' files to beBob Friesenhahn2020-01-251-4/+15
* Adjust previous fix to avoid undue warning in some situations triggered by GDALEven Rouault2020-01-231-8/+22
* _TIFFPartialReadStripArray: bring back support for non-conformant SLONG8 data...Even Rouault2020-01-121-3/+46
* OJPEGReadHeaderInfo: if rowsperstrip not defined, then assume one-single-stri...Even Rouault2020-01-071-0/+2
* OJPEG: fix broken sanity check added in 4.1.0, and add two OJPEG test filesEven Rouault2019-11-111-30/+23
* libtiff 4.1.0 releasedv4.1.0Bob Friesenhahn2019-11-031-2/+2
* Fix Cmake HAVE_GETOPT for systems which declare getopt in stdio.h.Bob Friesenhahn2019-11-031-1/+1
* tif_jpeg.c: extra cast to silence Coverity warning. GDAL CID 1406475Even Rouault2019-10-261-1/+1
* tif_jpeg.c: fix warning added by previous commit (on 32bit builds)Even Rouault2019-10-231-1/+1
* Use 64-bit calculations correctlyTimothy Lyanguzov2019-10-231-1/+1
* Fix size calculation to use 64-bit tmsize_t correctlyTimothy Lyanguzov2019-10-231-1/+1
* Make bytesperclumpline calculations using tmsize_t typeTimothy Lyanguzov2019-10-231-1/+1
* tif_read: align code of TIFFReadRawStrip() and TIFFReadRawTile() that differe...Even Rouault2019-10-031-10/+12
* TIFFReadAndRealloc(): avoid too large memory allocation attempts. Fixes https...Even Rouault2019-09-181-0/+16
* ByteCountLooksBad and EstimateStripByteCounts: avoid unsigned integer overflo...Even Rouault2019-09-031-3/+13
* tif_ojpeg.c: avoid relying on isTiled macro being wrapped in ()Even Rouault2019-09-021-2/+2
* tif_ojpeg.c: avoid use of uninitialized memory on edge/broken file. Fixes htt...Even Rouault2019-09-021-1/+7
* tif_dirread.c: allocChoppedUpStripArrays(). avoid unsigned integer overflow. ...Even Rouault2019-09-011-8/+21
* tif_ojpeg.c: avoid unsigned integer overflow. Fixes https://bugs.chromium.org...Even Rouault2019-08-271-1/+3
* TIFFReadDirEntryData(): rewrite to avoid unsigned integer overflow (not a bug...Even Rouault2019-08-271-6/+6
* TIFFFetchDirectory(): fix invalid cast from uint64 to tmsize_t. Fixes https:/...Even Rouault2019-08-261-2/+3
* JPEG: avoid use of unintialized memory on corrupted filesEven Rouault2019-08-251-0/+14
* _TIFFPartialReadStripArray(): avoid unsigned integer overflow. Fixes https://...Even Rouault2019-08-241-0/+8
* OJPEGWriteHeaderInfo(): avoid unsigned integer overflow on strile dimensions ...Even Rouault2019-08-231-2/+2
* TIFFFillStrip(): avoid harmless unsigned integer overflow. Fixes https://bugs...Even Rouault2019-08-231-2/+8
* EstimateStripByteCounts(): avoid unsigned integer overflow. Fixes https://bug...Even Rouault2019-08-231-1/+5
* tif_ojpeg: avoid unsigned integer overflow (probably not a bug). Fixes https:...Even Rouault2019-08-231-1/+2
* tif_thunder: avoid unsigned integer overflow (not a bug). Fixes https://bugs....Even Rouault2019-08-231-5/+5
* _TIFFMultiply32() / _TIFFMultiply64(): avoid relying on unsigned integer over...Even Rouault2019-08-223-20/+16
* EstimateStripByteCounts(): avoid unsigned integer overflowEven Rouault2019-08-221-0/+2
* EstimateStripByteCounts(): avoid unsigned integer overflowEven Rouault2019-08-211-14/+17
* EstimateStripByteCounts(): avoid harmless unsigned integer overflowEven Rouault2019-08-201-2/+8
* _TIFFPartialReadStripArray(): avoid triggering unsigned integer overflow with...Even Rouault2019-08-201-1/+8
* setByteArray(): fix previous commitEven Rouault2019-08-161-1/+1
* setByteArray(): avoid potential signed integer overflow. Pointed by Hendra Gu...Even Rouault2019-08-161-2/+2
* RGBA interface: fix integer overflow potentially causing write heap buffer ov...Even Rouault2019-08-151-6/+20
* Merge branch 'fix_integer_overflow' into 'master'Even Rouault2019-08-148-107/+71
|\
| * Fix integer overflow in _TIFFCheckMalloc() and other implementation-defined b...Even Rouault2019-08-138-107/+71
* | TIFFClientOpen(): fix memory leak if one of the required callbacks is not pro...Even Rouault2019-08-121-0/+1
* | OJPEGReadBufferFill(): avoid very long processing time on corrupted files. Fi...Even Rouault2019-08-121-2/+7
* | OJPEG: fix integer division by zero on corrupted subsampling factors. Fixes h...Even Rouault2019-08-101-0/+6
|/
* Reading of Tiff tags with ID = 0 (like GPSVERSIONID) corrected.Su Laus2019-08-042-184/+183
* TIFFWriteCheck(): call TIFFForceStrileArrayWriting() when needed (should have...Even Rouault2019-07-091-0/+14
* OJPEG: avoid use of unintialized memory on corrupted filesEven Rouault2019-07-051-0/+26
* Return infinite distance when denominator is zero.Dirk Lemstra2019-06-291-1/+1
* Merge branch 'defer_strile_writing' into 'master'Even Rouault2019-05-296-57/+252
|\
| * Add TIFFDeferStrileArrayWriting() and TIFFForceStrileArrayWriting()Even Rouault2019-05-256-57/+252
* | Merge branch 'TIFFReadFromUserBuffer' into 'master'Even Rouault2019-05-293-0/+91
|\ \
| * | Add TIFFReadFromUserBuffer()Even Rouault2019-05-233-0/+91