1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
1999-08-19  Andreas Schwab  <schwab@suse.de>

	* libio/iovswscanf.c (vswscanf): Make stream unoriented initially
	and call _IO_fwide, to get the wide stream state initialized
	correctly.  Don't set _IO_JUMPS.
	* libio/vsnprintf.c (_IO_vsnprintf): Avoid casts to _IO_FILE *.
	* libio/vswprintf.c (_IO_vswprintf): Likewise.  Pass
	_IO_wstrn_jumps to _IO_no_init instead of setting _IO_WIDE_JUMPS
	directly.

1999-08-19  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* math/libm-test.c (jn_test): Fix typo in description.
	(erfc_test): Add some more tests.
	(erf_test): Add some more tests.

1999-08-19  Andreas Schwab  <schwab@suse.de>

	* csu/Makefile ($(objpfx)initfini.s): Replace $(no-exceptions) by
	expression using $(exceptions).
This commit is contained in:
Ulrich Drepper
1999-08-19 16:47:42 +00:00
parent 96ff49374e
commit e1b13a63d0
6 changed files with 44 additions and 12 deletions

View File

@ -126,12 +126,11 @@ _IO_vswprintf (string, maxlen, format, args)
maxlen = sizeof (sf.overflow_buf) / sizeof (wchar_t);
}
_IO_no_init ((_IO_FILE *) &sf, 0, 0, &wd, NULL);
_IO_WIDE_JUMPS ((_IO_FILE *) &sf) = &_IO_wstrn_jumps;
_IO_no_init (&sf.f._sbf._f, 0, 0, &wd, &_IO_wstrn_jumps);
_IO_fwide (&sf.f._sbf._f, 1);
string[0] = L'\0';
_IO_wstr_init_static ((_IO_FILE *) &sf, string, maxlen - 1, string);
ret = _IO_vfwprintf ((_IO_FILE *) &sf, format, args);
_IO_wstr_init_static (&sf.f._sbf._f, string, maxlen - 1, string);
ret = _IO_vfwprintf (&sf.f._sbf._f, format, args);
if (sf.f._sbf._f._wide_data->_IO_buf_base != sf.overflow_buf)
*sf.f._sbf._f._wide_data->_IO_write_ptr = '\0';