mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
2520b90f18
d/python-setuptools-40.6.1-x86_64-1.txz: Upgraded. l/M2Crypto-0.31.0-x86_64-1.txz: Upgraded. l/SDL2-2.0.9-x86_64-2.txz: Rebuilt. Fixed use of SDL_syswm.h with SDL_PROTOTYPES_ONLY in C++ mode. Thanks to orbea. l/libtiff-4.0.10-x86_64-1.txz: Upgraded. This update fixes some denial of service security issues. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-7456 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8905 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-10779 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-10963 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-18661 (* Security fix *) l/netpbm-10.84.02-x86_64-1.txz: Upgraded. n/net-snmp-5.8-x86_64-2.txz: Rebuilt. Recompiled to link the perl modules to the new libraries. Thanks to th_r.
21 lines
673 B
Diff
21 lines
673 B
Diff
diff -up netpbm-10.61.01/converter/pbm/cmuwmtopbm.c.cmuwtopbmfix netpbm-10.61.01/converter/pbm/cmuwmtopbm.c
|
|
--- netpbm-10.61.01/converter/pbm/cmuwmtopbm.c.cmuwtopbmfix 2013-01-02 18:39:57.000000000 +0100
|
|
+++ netpbm-10.61.01/converter/pbm/cmuwmtopbm.c 2013-01-03 05:41:36.024984241 +0100
|
|
@@ -18,7 +18,7 @@
|
|
This program does not check the pad bits at the end of each row.
|
|
*/
|
|
|
|
-
|
|
+#include <stdint.h>
|
|
#include "pbm.h"
|
|
|
|
/*--------------------------
|
|
@@ -42,7 +42,7 @@ readCmuwmHeader(FILE * const ifP
|
|
"CMU window manager header EOF / read error";
|
|
uint32_t const cmuwmMagic = 0xf10040bb;
|
|
|
|
- long l;
|
|
+ uint32_t l;
|
|
short s;
|
|
int rc;
|
|
|