From 55d5f26bcd977f6323daec9e85cdbe599de8b31f Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Tue, 1 Nov 2016 11:16:27 +0200 Subject: musl: fix quoted time zone name handling Fix parsing and handling of the < > quoted time zone names: Compare the correct character instead of repeatedly comparing the first character. Patch has been submitted to musl upstream as http://www.openwall.com/lists/musl/2016/10/24/3 Longer explanation in http://www.openwall.com/lists/musl/2016/10/19/1 Signed-off-by: Hannu Nyman --- toolchain/musl/patches/400-fix_quoted_timezone.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 toolchain/musl/patches/400-fix_quoted_timezone.patch diff --git a/toolchain/musl/patches/400-fix_quoted_timezone.patch b/toolchain/musl/patches/400-fix_quoted_timezone.patch new file mode 100644 index 0000000000..79afa4a63b --- /dev/null +++ b/toolchain/musl/patches/400-fix_quoted_timezone.patch @@ -0,0 +1,11 @@ +--- a/src/time/__tz.c ++++ b/src/time/__tz.c +@@ -87,7 +87,7 @@ + int i; + if (**p == '<') { + ++*p; +- for (i=0; **p!='>' && i