aboutsummaryrefslogtreecommitdiff
path: root/src/include/extractor.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-10-13 12:16:46 +0200
committerChristian Grothoff <christian@grothoff.org>2017-10-13 12:16:46 +0200
commitf813535dad4ad860b989952a46266a1469801091 (patch)
tree7e656025d362d61066982b5643d5360fdd471561 /src/include/extractor.h
parent25da5822cdd3682789b949a3f37219b1ecc9dc30 (diff)
downloadlibextractor-f813535dad4ad860b989952a46266a1469801091.tar.gz
libextractor-f813535dad4ad860b989952a46266a1469801091.zip
fix integer overflow in PNG plugin as reported by Leon Zhao on the mailinglist
Diffstat (limited to 'src/include/extractor.h')
-rw-r--r--src/include/extractor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/extractor.h b/src/include/extractor.h
index 4bb1217..fe0d1ce 100644
--- a/src/include/extractor.h
+++ b/src/include/extractor.h
@@ -35,7 +35,7 @@ extern "C" {
35 * 0.2.6-1 => 0x00020601 35 * 0.2.6-1 => 0x00020601
36 * 4.5.2-0 => 0x04050200 36 * 4.5.2-0 => 0x04050200
37 */ 37 */
38#define EXTRACTOR_VERSION 0x01050000 38#define EXTRACTOR_VERSION 0x01050001
39 39
40#include <stdio.h> 40#include <stdio.h>
41 41