2001-04-27 Jeff Johnston <jjohnstn@redhat.com>

* libc/stdio/vfscanf.c (__svfscanf_r): Initialize new_exp local var.
This commit is contained in:
Jeff Johnston 2001-04-27 21:59:44 +00:00
parent 7cb7017ae0
commit 0ca6697493
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-04-27 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdio/vfscanf.c (__svfscanf_r): Initialize new_exp local var.
2001-04-27 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdlib.h: Add prototype for _strtod_r.

View file

@ -945,7 +945,7 @@ __svfscanf_r (rptr, fp, fmt0, ap)
#else /* !_NO_LONG_DBL */
long double res;
#endif /* !_NO_LONG_DBL */
long new_exp;
long new_exp = 0;
*p = 0;
if ((flags & (DPTOK | EXPOK)) == EXPOK)