* libtiff/tif_ojpeg.c: make OJPEGDecode() early exit in case of failure in
OJPEGPreDecode(). This will avoid a divide by zero, and potential other issues. Reported by Agostino Sarubbo. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2611
This commit is contained in:
parent
9e9a0bbfb2
commit
45ba019d0f
@ -1,3 +1,10 @@
|
|||||||
|
2016-12-03 Even Rouault <even.rouault at spatialys.com>
|
||||||
|
|
||||||
|
* libtiff/tif_ojpeg.c: make OJPEGDecode() early exit in case of failure in
|
||||||
|
OJPEGPreDecode(). This will avoid a divide by zero, and potential other issues.
|
||||||
|
Reported by Agostino Sarubbo.
|
||||||
|
Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2611
|
||||||
|
|
||||||
2016-12-03 Even Rouault <even.rouault at spatialys.com>
|
2016-12-03 Even Rouault <even.rouault at spatialys.com>
|
||||||
|
|
||||||
* libtiff/tif_dirread.c: modify ChopUpSingleUncompressedStrip() to
|
* libtiff/tif_dirread.c: modify ChopUpSingleUncompressedStrip() to
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: tif_ojpeg.c,v 1.65 2016-09-04 21:32:56 erouault Exp $ */
|
/* $Id: tif_ojpeg.c,v 1.66 2016-12-03 11:15:18 erouault Exp $ */
|
||||||
|
|
||||||
/* WARNING: The type of JPEG encapsulation defined by the TIFF Version 6.0
|
/* WARNING: The type of JPEG encapsulation defined by the TIFF Version 6.0
|
||||||
specification is now totally obsolete and deprecated for new applications and
|
specification is now totally obsolete and deprecated for new applications and
|
||||||
@ -244,6 +244,7 @@ typedef enum {
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
TIFF* tif;
|
TIFF* tif;
|
||||||
|
int decoder_ok;
|
||||||
#ifndef LIBJPEG_ENCAP_EXTERNAL
|
#ifndef LIBJPEG_ENCAP_EXTERNAL
|
||||||
JMP_BUF exit_jmpbuf;
|
JMP_BUF exit_jmpbuf;
|
||||||
#endif
|
#endif
|
||||||
@ -722,6 +723,7 @@ OJPEGPreDecode(TIFF* tif, uint16 s)
|
|||||||
}
|
}
|
||||||
sp->write_curstrile++;
|
sp->write_curstrile++;
|
||||||
}
|
}
|
||||||
|
sp->decoder_ok = 1;
|
||||||
return(1);
|
return(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -784,8 +786,14 @@ OJPEGPreDecodeSkipScanlines(TIFF* tif)
|
|||||||
static int
|
static int
|
||||||
OJPEGDecode(TIFF* tif, uint8* buf, tmsize_t cc, uint16 s)
|
OJPEGDecode(TIFF* tif, uint8* buf, tmsize_t cc, uint16 s)
|
||||||
{
|
{
|
||||||
|
static const char module[]="OJPEGDecode";
|
||||||
OJPEGState* sp=(OJPEGState*)tif->tif_data;
|
OJPEGState* sp=(OJPEGState*)tif->tif_data;
|
||||||
(void)s;
|
(void)s;
|
||||||
|
if( !sp->decoder_ok )
|
||||||
|
{
|
||||||
|
TIFFErrorExt(tif->tif_clientdata,module,"Cannot decode: decoder not correctly initialized");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
if (sp->libjpeg_jpeg_query_style==0)
|
if (sp->libjpeg_jpeg_query_style==0)
|
||||||
{
|
{
|
||||||
if (OJPEGDecodeRaw(tif,buf,cc)==0)
|
if (OJPEGDecodeRaw(tif,buf,cc)==0)
|
||||||
|
Loading…
Reference in New Issue
Block a user