Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2001-04-28 01:59:44 +0400
committerJeff Johnston <jjohnstn@redhat.com>2001-04-28 01:59:44 +0400
commit0ca66974933232188d8d347b225abacf77d241cf (patch)
tree0ab4045f322dbb8ff990f1d284861bc4ccf7c8ae /newlib/libc/stdio
parent7cb7017ae0acd7c503b149012285b01e63eeda80 (diff)
2001-04-27 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdio/vfscanf.c (__svfscanf_r): Initialize new_exp local var.
Diffstat (limited to 'newlib/libc/stdio')
-rw-r--r--newlib/libc/stdio/vfscanf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/vfscanf.c b/newlib/libc/stdio/vfscanf.c
index fad6e91ab..662a92360 100644
--- a/newlib/libc/stdio/vfscanf.c
+++ b/newlib/libc/stdio/vfscanf.c
@@ -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)