diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-10-13 06:52:13 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-10-13 12:35:27 +0200 |
commit | 063338c8cb378bad40f33fe4b4af7ab566818e80 (patch) | |
tree | b8ca7423b2b9d125a5133d2a83fe5dd7996ef012 /package/guile/0003-remove_unused_funcs.patch | |
parent | 521aaf55546eac9f44b22eb01bec8cd145eb6650 (diff) | |
download | buildroot-063338c8cb378bad40f33fe4b4af7ab566818e80.tar.gz buildroot-063338c8cb378bad40f33fe4b4af7ab566818e80.zip |
guile: security bump to version 2.0.13
Fixes:
CVE-2016-8606 - REPL server now protects against HTTP inter-protocol
attacks.
CVE-2016-8605 - 'mkdir' procedure no longer calls umask(2).
Remove upstream patch.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/guile/0003-remove_unused_funcs.patch')
-rw-r--r-- | package/guile/0003-remove_unused_funcs.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/package/guile/0003-remove_unused_funcs.patch b/package/guile/0003-remove_unused_funcs.patch deleted file mode 100644 index 3d70ee9fc9..0000000000 --- a/package/guile/0003-remove_unused_funcs.patch +++ /dev/null @@ -1,36 +0,0 @@ -Remove unused static inline functions str_upcase_l() and -str_downcase_l() that cause the compilation error: -'dereferencing pointer to incomplete type'. - -Signed-off-by: Pedro Aguilar <paguilar@paguilar.org> - -diff -Nau guile-2.0.11.orig/libguile/i18n.c guile-2.0.11/libguile/i18n.c ---- guile-2.0.11.orig/libguile/i18n.c 2014-01-21 22:25:11.000000000 +0100 -+++ guile-2.0.11/libguile/i18n.c 2014-11-04 23:18:52.675435613 +0100 -@@ -851,26 +851,6 @@ - *dst = '\0'; - } - --#ifdef USE_GNU_LOCALE_API --static inline void --str_upcase_l (register char *dst, register const char *src, -- scm_t_locale locale) --{ -- for (; *src != '\0'; src++, dst++) -- *dst = toupper_l (*src, locale); -- *dst = '\0'; --} -- --static inline void --str_downcase_l (register char *dst, register const char *src, -- scm_t_locale locale) --{ -- for (; *src != '\0'; src++, dst++) -- *dst = tolower_l (*src, locale); -- *dst = '\0'; --} --#endif -- - - SCM_DEFINE (scm_string_locale_lt, "string-locale<?", 2, 1, 0, - (SCM s1, SCM s2, SCM locale), |