mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
1999-08-13 Ulrich Drepper <drepper@cygnus.com> * stdio-common/vfscanf.c: Don't recognize hexadecimal floats with exponent. 1999-08-10 Andreas Schwab <schwab@suse.de> * elf/dl-load.c (_dl_map_object_from_fd): Fix check for valid elf header.
This commit is contained in:
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
1999-08-13 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* stdio-common/vfscanf.c: Don't recognize hexadecimal floats with
|
||||||
|
exponent.
|
||||||
|
|
||||||
|
1999-08-10 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
|
* elf/dl-load.c (_dl_map_object_from_fd): Fix check for valid elf
|
||||||
|
header.
|
||||||
|
|
||||||
1999-08-09 Scott Bambrough <scottb@netwinder.org>
|
1999-08-09 Scott Bambrough <scottb@netwinder.org>
|
||||||
|
|
||||||
* elf/elf.h: Added definition of ELFOSABI_ARM.
|
* elf/elf.h: Added definition of ELFOSABI_ARM.
|
||||||
|
@ -1410,8 +1410,8 @@ __vfscanf (FILE *s, const char *format, va_list argptr)
|
|||||||
|
|
||||||
/* Have we read any character? If we try to read a number
|
/* Have we read any character? If we try to read a number
|
||||||
in hexadecimal notation and we have read only the `0x'
|
in hexadecimal notation and we have read only the `0x'
|
||||||
prefix this is an error. */
|
prefix or no exponent this is an error. */
|
||||||
if (wpsize == 0 || (is_hexa && wpsize == 2))
|
if (wpsize == 0 || (is_hexa && (wpsize == 2 || ! got_e)))
|
||||||
conv_error ();
|
conv_error ();
|
||||||
|
|
||||||
scan_float:
|
scan_float:
|
||||||
|
Reference in New Issue
Block a user