Fix possible uninitialized memory in libtiff

pull/8965/head
Maksim Shabunin 8 years ago
parent 0303fa0a19
commit 5770b961a1
  1. 2
      3rdparty/libtiff/tif_dirread.c

@ -3707,7 +3707,7 @@ TIFFReadDirectory(TIFF* tif)
case TIFFTAG_SMAXSAMPLEVALUE: case TIFFTAG_SMAXSAMPLEVALUE:
{ {
double *data; double *data = 0;
enum TIFFReadDirEntryErr err; enum TIFFReadDirEntryErr err;
uint32 saved_flags; uint32 saved_flags;
int m; int m;

Loading…
Cancel
Save