Commit 5770b961 authored by Maksim Shabunin's avatar Maksim Shabunin

Fix possible uninitialized memory in libtiff

parent 0303fa0a
......@@ -3707,7 +3707,7 @@ TIFFReadDirectory(TIFF* tif)
case TIFFTAG_SMAXSAMPLEVALUE:
{
double *data;
double *data = 0;
enum TIFFReadDirEntryErr err;
uint32 saved_flags;
int m;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment