Eelco Dolstra 2013-12-16 17:12:19 +01:00
parent eea9e405c8
commit 53567db1d5
2 changed files with 23 additions and 0 deletions

View file

@ -54,6 +54,8 @@ stdenv.mkDerivation ({
src->results[i].native == a2_native' failed." crashes. */
./glibc-rh739743.patch
./scanf.patch
./cve-2012-4412+4424.patch
./cve-2013-4237.patch
./cve-2013-4332.patch

View file

@ -0,0 +1,21 @@
https://sourceware.org/bugzilla/show_bug.cgi?id=15917
commit a4966c6104918ac884ee1131a4ed23c5ad6b4c5a
Author: Andreas Schwab <schwab@suse.de>
Date: Thu Oct 31 12:51:03 2013 +0100
Fix parsing of 0e+0 as float
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c
index 78dc2fc..e6fa8f3 100644
--- a/stdio-common/vfscanf.c
+++ b/stdio-common/vfscanf.c
@@ -1966,6 +1966,8 @@ _IO_vfscanf_internal (_IO_FILE *s, const char *format, _IO_va_list argptr,
if (width > 0)
--width;
}
+ else
+ got_digit = 1;
}
while (1)