Blame SOURCES/libtiff-CVE-2012-3401.patch
|
|
7c98bb |
Upstream patch for CVE-2012-3401.
|
|
|
7c98bb |
|
|
|
7c98bb |
|
|
|
7c98bb |
diff -Naur tiff-3.9.4.orig/tools/tiff2pdf.c tiff-3.9.4/tools/tiff2pdf.c
|
|
|
7c98bb |
--- tiff-3.9.4.orig/tools/tiff2pdf.c 2010-06-13 16:51:44.000000000 -0400
|
|
|
7c98bb |
+++ tiff-3.9.4/tools/tiff2pdf.c 2012-12-11 11:17:56.506344841 -0500
|
|
|
7c98bb |
@@ -1090,6 +1090,7 @@
|
|
|
7c98bb |
"Can't set directory %u of input file %s",
|
|
|
7c98bb |
i,
|
|
|
7c98bb |
TIFFFileName(input));
|
|
|
7c98bb |
+ t2p->t2p_error = T2P_ERR_ERROR;
|
|
|
7c98bb |
return;
|
|
|
7c98bb |
}
|
|
|
7c98bb |
if(TIFFGetField(input, TIFFTAG_PAGENUMBER, &pagen, &paged)){
|
|
|
7c98bb |
@@ -3153,6 +3154,7 @@
|
|
|
7c98bb |
"Can't allocate %u bytes of memory for t2p_process_ojpeg_tables, %s",
|
|
|
7c98bb |
2048,
|
|
|
7c98bb |
TIFFFileName(input));
|
|
|
7c98bb |
+ t2p->t2p_error = T2P_ERR_ERROR;
|
|
|
7c98bb |
return(0);
|
|
|
7c98bb |
}
|
|
|
7c98bb |
_TIFFmemset(t2p->pdf_ojpegdata, 0x00, 2048);
|
|
|
7c98bb |
@@ -5248,6 +5250,7 @@
|
|
|
7c98bb |
TIFF2PDF_MODULE,
|
|
|
7c98bb |
"Can't allocate %u bytes of memory for t2p_write_pdf",
|
|
|
7c98bb |
t2p->pdf_xrefcount * sizeof(uint32) );
|
|
|
7c98bb |
+ t2p->t2p_error = T2P_ERR_ERROR;
|
|
|
7c98bb |
return(written);
|
|
|
7c98bb |
}
|
|
|
7c98bb |
t2p->pdf_xrefcount=0;
|