1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

Fix possible uninitialized memory in libtiff

This commit is contained in:
Maksim Shabunin
2017-06-22 14:04:30 +03:00
parent 0303fa0a19
commit 5770b961a1
+1 -1
View File
@@ -3707,7 +3707,7 @@ TIFFReadDirectory(TIFF* tif)
case TIFFTAG_SMAXSAMPLEVALUE:
{
double *data;
double *data = 0;
enum TIFFReadDirEntryErr err;
uint32 saved_flags;
int m;