ee295f46b9
- security update * CVE-2018-17100 [bsc#1108637] + tiff-CVE-2018-17100.patch * CVE-2018-17101 [bsc#1108627] + tiff-CVE-2018-17101.patch OBS-URL: https://build.opensuse.org/request/show/642627 OBS-URL: https://build.opensuse.org/package/show/graphics/tiff?expand=0&rev=125
28 lines
677 B
Diff
28 lines
677 B
Diff
Index: tiff-4.0.9/tools/ppm2tiff.c
|
|
===================================================================
|
|
--- tiff-4.0.9.orig/tools/ppm2tiff.c 2018-10-17 12:25:05.271940872 +0200
|
|
+++ tiff-4.0.9/tools/ppm2tiff.c 2018-10-17 12:26:15.468262130 +0200
|
|
@@ -72,15 +72,16 @@ BadPPM(char* file)
|
|
exit(-2);
|
|
}
|
|
|
|
+
|
|
+#define TIFF_SIZE_T_MAX ((size_t) ~ ((size_t)0))
|
|
+#define TIFF_TMSIZE_T_MAX (tmsize_t)(TIFF_SIZE_T_MAX >> 1)
|
|
+
|
|
static tmsize_t
|
|
multiply_ms(tmsize_t m1, tmsize_t m2)
|
|
{
|
|
- tmsize_t bytes = m1 * m2;
|
|
-
|
|
- if (m1 && bytes / m1 != m2)
|
|
- bytes = 0;
|
|
-
|
|
- return bytes;
|
|
+ if( m1 == 0 || m2 > TIFF_TMSIZE_T_MAX / m1 )
|
|
+ return 0;
|
|
+ return m1 * m2;
|
|
}
|
|
|
|
int
|