mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
glibc: Apply upstream patch for scanf regression
https://sourceware.org/bugzilla/show_bug.cgi?id=15917 This broke Atlas. http://hydra.nixos.org/build/7072399 http://sourceforge.net/p/math-atlas/discussion/75123/thread/dc45bb67/
This commit is contained in:
parent
eea9e405c8
commit
53567db1d5
@ -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
|
||||
|
21
pkgs/development/libraries/glibc/2.18/scanf.patch
Normal file
21
pkgs/development/libraries/glibc/2.18/scanf.patch
Normal 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)
|
Loading…
Reference in New Issue
Block a user