Skip to content
Snippets Groups Projects
Commit e6670c79 authored by John David Anglin's avatar John David Anglin Committed by John David Anglin
Browse files

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
parent 6d9c4c83
No related branches found
No related tags found
No related merge requests found
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> 2003-04-09 Benjamin Kosnik <bkoz@redhat.com>
Reshuffle 27_io testsuite. * testsuite/27_io/filebuf.cc, Reshuffle 27_io testsuite. * testsuite/27_io/filebuf.cc,
......
...@@ -195,12 +195,12 @@ namespace std ...@@ -195,12 +195,12 @@ namespace std
__basic_file* __retval = static_cast<__basic_file*>(NULL); __basic_file* __retval = static_cast<__basic_file*>(NULL);
if (this->is_open()) if (this->is_open())
{ {
fflush(_M_cfile); if (_M_cfile_created)
if ((_M_cfile_created && fclose(_M_cfile) == 0) || !_M_cfile_created) fclose(_M_cfile);
{ else
_M_cfile = 0; fflush(_M_cfile);
__retval = this; _M_cfile = 0;
} __retval = this;
} }
return __retval; return __retval;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment