summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* v4.5.0.rst: mention CVE numbersv4.5.0rc1Even Rouault2022-12-091-5/+7
* Prepare v4.5.0 releaseEven Rouault2022-12-099-11/+1515
* Merge branch 'reformat' into 'master'Even Rouault2022-12-08141-74364/+80884
|\
| * Add .git-blame-ignore-revsEven Rouault2022-12-081-0/+4
| * tiffcrop: remove version_id and rev_dateEven Rouault2022-12-081-5/+0
| * Reformatting in all other directories using 'pre-commit run'pre-commit run by Even Rouault2022-12-0838-7797/+8230
| * Reformatting in test/ using 'pre-commit run'pre-commit run by Even Rouault2022-12-0821-5007/+6177
| * Reformatting in tools/ using 'pre-commit run'pre-commit run by Even Rouault2022-12-0821-25053/+27745
| * Reformatting in libtiff/ using 'pre-commit run'pre-commit run by Even Rouault2022-12-0855-35591/+38691
| * Add .clang-format, .pre-commit-config.yaml and CONTRIBUTING.mdEven Rouault2022-12-083-0/+34
| * Remove vim/emacs formatting footersEven Rouault2022-12-08117-909/+1
|/
* Merge branch 'fix_489' into 'master'Even Rouault2022-11-294-4/+122
|\
| * Add test case for scenario of issue #489Even Rouault2022-11-293-1/+116
| * TIFFWriteRawStrip(): restore capabilities to append data in the current strip...Even Rouault2022-11-291-3/+6
|/
* Merge branch 'manpage_re-entrant_error_handler' into 'master'Even Rouault2022-11-2835-130/+274
|\
| * manpage update for re-entrant error handler TIFFErrorExtR(), TIFFOpenExt() an...Su Laus2022-11-2835-130/+274
* | Merge branch 'tiffcrop_fix_#169' into 'master'Even Rouault2022-11-271-0/+5
|\ \
| * | tiffcrop: Add check if (bps != 1) in writeSingleSection() for...Su Laus2022-11-271-0/+5
|/ /
* | Merge branch 'TIFFErrorExtR_fix_missing_calls' into 'master'Even Rouault2022-11-261-2/+2
|\ \ | |/ |/|
| * TIFFErrorExt() was not replaced with TIFFErrorExtR() everywhere in libtiff....Su Laus2022-11-261-2/+2
|/
* Merge branch 'tif_jpeg_build_fix' into 'master'Even Rouault2022-11-251-16/+19
|\
| * tif_jpeg.c: fix compilation with MSVC (fixes commit 0fd1a81d3547acb8f5be50bbb...Even Rouault2022-11-251-16/+19
* | Merge branch 'fix_0fd1a81d3547acb8f5be50bbbc3e44bde01c014b' into 'master'Even Rouault2022-11-251-1/+1
|\ \ | |/
| * JPEGEncode(): fix wrong pointer data type with libjpeg-turbo 2.2dev in 12-bit...Even Rouault2022-11-251-1/+1
|/
* Merge branch 'libjpegturbo_dual' into 'master'Even Rouault2022-11-257-68/+183
|\
| * Add support for libjpeg-turbo 2.2-dev 8/12 bit dual modeEven Rouault2022-11-257-68/+183
|/
* Merge branch 'windows-fix' into 'master'Even Rouault2022-11-231-2/+2
|\
| * libtiff: Fix TIFFOpen* for the Windows platform in tif_unix.cFrancois Bleibel2022-11-231-2/+2
|/
* Merge branch 'tiffcrop_signed_vs_unsigned' into 'master'Even Rouault2022-11-231-4/+4
|\
| * tiffcrop.c: fix warning about signed vs unsigned comparisonEven Rouault2022-11-231-4/+4
* | Merge branch 'TIFFClientOpenExt_warning_fix' into 'master'Even Rouault2022-11-231-1/+3
|\ \ | |/ |/|
| * TIFFClientOpenExt(): fix warning on 32-bit platforms (master only)Even Rouault2022-11-231-1/+3
|/
* Merge branch 'tiffcp_TIFFOpenOptionsFree_memleak_fix' into 'master'Even Rouault2022-11-231-1/+5
|\
| * tiffcp: fix leak of TIFFOpenOptionsAlloc() introduced in latest commit (maste...Even Rouault2022-11-231-1/+5
|/
* Merge branch 'TIFFOpenOptionsSetMaxSingleMemAlloc' into 'master'Even Rouault2022-11-2340-463/+679
|\
| * Emit explicit error message when tif_max_single_mem_alloc is exceededEven Rouault2022-11-232-9/+65
| * test_open_options: test TIFFOpenOptionsSetMaxSingleMemAlloc()Even Rouault2022-11-231-1/+20
| * Rename test_error_handlers to test_open_optionsEven Rouault2022-11-233-10/+10
| * tiffinfo, tiffcp, tiffcrop, tiffsplit, tiff2rgba, tiff2ps: use TIFFOpenOption...Even Rouault2022-11-236-12/+69
| * Convert uses of _TIFFmalloc/realloc/calloc/free to the Ext functionsEven Rouault2022-11-2327-439/+460
| * Add TIFFOpenOptionsSetMaxSingleMemAlloc()Even Rouault2022-11-225-2/+65
|/
* Merge branch 'TIFFOpenEx' into 'master'Even Rouault2022-11-2115-70/+393
|\
| * Remove TIFFSetErrorHandlerExtR() and TIFFSetWarningHandlerExtR() that were te...Even Rouault2022-11-218-56/+14
| * Add a _TIFFErrorEarly() function to be able to use the re-entrant error handl...Even Rouault2022-11-216-15/+46
| * Rework TIFFOpenExt() and similar to use an opaque TIFFOpenOptions* opts argum...Even Rouault2022-11-219-290/+142
| * Document TIFFOpenExt, TIFFOpenWExt, TIFFFdOpenExt, TIFFClientOpenExt, TIFFSet...Even Rouault2022-11-213-1/+86
| * Add TIFFOpenExt(), TIFFOpenWExt() and TIFFFdOpenExt() with re-entrant error h...Even Rouault2022-11-2112-53/+450
|/
* Merge branch 'manpage_fix485_file-descriptor_clientdata' into 'master'Even Rouault2022-11-219-43/+50
|\
| * manpage: Correct description of file handle/descriptors tif_fd and tif_client...Su Laus2022-11-219-43/+50
|/
* Merge branch 'manpage_fix440_fix28_TIFFOpen_SubIFD_update' into 'master'Even Rouault2022-11-208-6/+42
|\