Fix CVE-2022-34526: https://nvd.nist.gov/vuln/detail/CVE-2022-34526 https://gitlab.com/libtiff/libtiff/-/issues/433 Patch taken from upstream source repository: https://gitlab.com/libtiff/libtiff/-/commit/275735d0354e39c0ac1dc3c0db2120d6f31d1990 diff --git a/libtiff/tif_dirinfo.c b/libtiff/tif_dirinfo.c --- a/libtiff/tif_dirinfo.c +++ b/libtiff/tif_dirinfo.c @@ -1191,6 +1191,9 @@ _TIFFCheckFieldIsValidForCodec(TIFF *tif, ttag_t tag) default: return 1; } + if( !TIFFIsCODECConfigured(tif->tif_dir.td_compression) ) { + return 0; + } /* Check if codec specific tags are allowed for the current * compression scheme (codec) */ switch (tif->tif_dir.td_compression) { ge='this.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/processes.scm
AgeCommit message (Expand)Author
2019-12-10tests: processes: Skip tests if running with binfmt....* tests/processes.scm (binfmt-misc?): New procedure, (test-assert*): new procedure that skips the test if binfmt-misc? returns Mathieu Othacehe
2018-10-29Add 'guix processes'....* guix/scripts/processes.scm, tests/processes.scm: New files. * Makefile.am (MODULES): Add the former. (SCM_TESTS): Add the latter. * po/guix/POTFILES.in: Add guix/scripts/processes.scm. * doc/guix.texi (Invoking guix processes): New node. (Invoking guix-daemon): Reference it. Ludovic Courtès