mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
bdfe75a5cd
- Bumps version to 4.0.9. Otherwise about two dozen packages would need to be backported. There were no ABI/API changes between 4.0.3 and 4.0.9, so this is OK. - Adds a patch from Jow that addresses a macro issue (already in master/lede-17.01) - Adds patches copied from Debian for CVE-2017-18013 and CVE-2017-9935 on top. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
12 lines
336 B
Diff
12 lines
336 B
Diff
--- a/libtiff/tiffiop.h
|
|
+++ b/libtiff/tiffiop.h
|
|
@@ -287,7 +287,7 @@ struct tiff {
|
|
*/
|
|
#if defined(HAVE_FSEEKO)
|
|
# define fseek(stream,offset,whence) fseeko(stream,offset,whence)
|
|
-# define ftell(stream,offset,whence) ftello(stream,offset,whence)
|
|
+# define ftell(stream) ftello(stream)
|
|
#endif
|
|
#endif
|
|
#if defined(__WIN32__) && \
|