diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-13 19:41:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-13 19:41:35 +0000 |
commit | c8bb15ce8c5d9bb406e1611bd5bcc3b47b4324b1 (patch) | |
tree | 82364cadfed631a24674da95ee53997adcf41e9a /stdio-common/vfscanf.c | |
parent | e79137b2fb8bda5e06ee2a618964604831d440cc (diff) | |
download | glibc-c8bb15ce8c5d9bb406e1611bd5bcc3b47b4324b1.zip glibc-c8bb15ce8c5d9bb406e1611bd5bcc3b47b4324b1.tar.gz glibc-c8bb15ce8c5d9bb406e1611bd5bcc3b47b4324b1.tar.bz2 |
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.
Diffstat (limited to 'stdio-common/vfscanf.c')
-rw-r--r-- | stdio-common/vfscanf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c index a494bfa..846542f 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -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 in hexadecimal notation and we have read only the `0x' - prefix this is an error. */ - if (wpsize == 0 || (is_hexa && wpsize == 2)) + prefix or no exponent this is an error. */ + if (wpsize == 0 || (is_hexa && (wpsize == 2 || ! got_e))) conv_error (); scan_float: |