diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-02-21 16:59:23 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-02-21 16:59:23 +0000 |
commit | b0ba0ac21747fef4f150f2632aedf0f59e0ae03a (patch) | |
tree | b5be89d899bc4501e5e36ce4dd3ef2179cbb272f /newlib | |
parent | d3b7d141acc1106a792ccb699620fe719ea77b29 (diff) | |
download | cygnal-b0ba0ac21747fef4f150f2632aedf0f59e0ae03a.tar.gz cygnal-b0ba0ac21747fef4f150f2632aedf0f59e0ae03a.tar.bz2 cygnal-b0ba0ac21747fef4f150f2632aedf0f59e0ae03a.zip |
Mon Feb 21 11:43:50 2000 Jeff Johnston <jjohnstn@cygnus.com>
* libc/stdio/vfprintf.c (VFPRINTF): Added CHECK_INIT
call prior to calling _VFPRINTF_R so reentrant data area is set.
(_VFPRINTF_R): Removed now extraneous CHECK_INIT call.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 6 | ||||
-rw-r--r-- | newlib/libc/stdio/vfprintf.c | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 0dde36388..b4147c2aa 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,9 @@ +Mon Feb 21 11:43:50 2000 Jeff Johnston <jjohnstn@cygnus.com> + + * libc/stdio/vfprintf.c (VFPRINTF): Added CHECK_INIT + call prior to calling _VFPRINTF_R so reentrant data area is set. + (_VFPRINTF_R): Removed now extraneous CHECK_INIT call. + Thu Feb 17 01:42:50 2000 J"orn Rennecke <amylaar@cygnus.co.uk> * libc/stdio/vfscanf.c (limits.h): #include. diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c index 4b2043e49..8da76db99 100644 --- a/newlib/libc/stdio/vfprintf.c +++ b/newlib/libc/stdio/vfprintf.c @@ -276,6 +276,7 @@ _DEFUN (VFPRINTF, (fp, fmt0, ap), _CONST char *fmt0 _AND va_list ap) { + CHECK_INIT (fp); return _VFPRINTF_R (fp->_data, fp, fmt0, ap); } @@ -396,8 +397,6 @@ _DEFUN (_VFPRINTF_R, (data, fp, fmt0, ap), (u_long)va_arg(ap, u_int)) #endif - CHECK_INIT (fp); - /* sorry, fprintf(read_only_file, "") returns EOF, not 0 */ if (cantwrite(fp)) return (EOF); |