TIFFWriteDirectorySec: avoid assertion. Fixes http://bugzilla.maptools.org/show_bug.cgi?id=2795. CVE-2018-10963
This commit is contained in:
parent
6150fd4349
commit
de144fd228
@ -695,8 +695,11 @@ TIFFWriteDirectorySec(TIFF* tif, int isimage, int imagedone, uint64* pdiroff)
|
||||
}
|
||||
break;
|
||||
default:
|
||||
assert(0); /* we should never get here */
|
||||
break;
|
||||
TIFFErrorExt(tif->tif_clientdata,module,
|
||||
"Cannot write tag %d (%s)",
|
||||
TIFFFieldTag(o),
|
||||
o->field_name ? o->field_name : "unknown");
|
||||
goto bad;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user