mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-30 07:14:09 +08:00
basic_file_stdio.cc (__basic_file<char>::close): Don't flush stream twice.
* basic_file_stdio.cc (__basic_file<char>::close): Don't flush stream twice. Always set _M_cfile to 0 when stream was open. From-SVN: r65458
This commit is contained in:
parent
6d9c4c8386
commit
e6670c79c7
@ -1,3 +1,8 @@
|
||||
2003-04-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
* basic_file_stdio.cc (__basic_file<char>::close): Don't flush stream
|
||||
twice. Always set _M_cfile to 0 when stream was open.
|
||||
|
||||
2003-04-09 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
Reshuffle 27_io testsuite. * testsuite/27_io/filebuf.cc,
|
||||
|
@ -195,13 +195,13 @@ namespace std
|
||||
__basic_file* __retval = static_cast<__basic_file*>(NULL);
|
||||
if (this->is_open())
|
||||
{
|
||||
if (_M_cfile_created)
|
||||
fclose(_M_cfile);
|
||||
else
|
||||
fflush(_M_cfile);
|
||||
if ((_M_cfile_created && fclose(_M_cfile) == 0) || !_M_cfile_created)
|
||||
{
|
||||
_M_cfile = 0;
|
||||
__retval = this;
|
||||
}
|
||||
}
|
||||
return __retval;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user