From 44f9b5d24741ec013a13e0216f7f13eee0ee6ddd Mon Sep 17 00:00:00 2001 From: deischen Date: Mon, 4 Jun 2001 12:36:07 +0000 Subject: Properly initialize a temporary FILE that is allocated off the stack. The change to reuse _up from FILE (to allow FILE to grow without changing size) overlooked FILE being allocated off the stack. Approved by: sobomax --- lib/libc/stdio/sscanf.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/libc/stdio/sscanf.c') diff --git a/lib/libc/stdio/sscanf.c b/lib/libc/stdio/sscanf.c index 2ed797e..c887788 100644 --- a/lib/libc/stdio/sscanf.c +++ b/lib/libc/stdio/sscanf.c @@ -77,6 +77,7 @@ sscanf(str, fmt, va_alist) { int ret; va_list ap; + struct __sFILEX extra; FILE f; f._file = -1; @@ -86,6 +87,8 @@ sscanf(str, fmt, va_alist) f._read = eofread; f._ub._base = NULL; f._lb._base = NULL; + f._extra = &extra; + INITEXTRA(&f); #if __STDC__ va_start(ap, fmt); #else -- cgit v1.1