public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: peturr02@ru.is
To: gcc-gnats@gcc.gnu.org
Subject: libstdc++/9523: ios_base::sync_with_stdio clobbers standard streams
Date: Fri, 31 Jan 2003 12:26:00 -0000	[thread overview]
Message-ID: <20030131121716.18795.qmail@sources.redhat.com> (raw)


>Number:         9523
>Category:       libstdc++
>Synopsis:       ios_base::sync_with_stdio clobbers standard streams
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Fri Jan 31 12:26:00 UTC 2003
>Closed-Date:
>Last-Modified:
>Originator:     peturr02@ru.is
>Release:        gcc-3.2.1
>Organization:
>Environment:
Red Hat Linux 8.0
>Description:
If any changes are made to the state of the standard stream objects (cin, cout etc.) before ios_base::sync_with_stdio is called, that state is lost as a result of the call.
>How-To-Repeat:
See attachment.
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:
----gnatsweb-attachment----
Content-Type: text/plain; name="syncwstdiobug.cc"
Content-Disposition: inline; filename="syncwstdiobug.cc"

#include <iostream>

#undef NDEBUG
#include <cassert>

int main()
{
	using namespace std;

	int index = ios_base::xalloc();

	cin.iword(index) = 5;
	cout.iword(index) = 5;
	cerr.iword(index) = 5;
	clog.iword(index) = 5;
	wcin.iword(index) = 5;
	wcout.iword(index) = 5;
	wcerr.iword(index) = 5;
	wclog.iword(index) = 5;

	ios_base::sync_with_stdio(false);

	assert(cin.iword(index) == 5);
	assert(cout.iword(index) == 5);
	assert(cerr.iword(index) == 5);
	assert(clog.iword(index) == 5);
	assert(wcin.iword(index) == 5);
	assert(wcout.iword(index) == 5);
	assert(wcerr.iword(index) == 5);
	assert(wclog.iword(index) == 5);

	return 0;
}


             reply	other threads:[~2003-01-31 12:26 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-01-31 12:26 peturr02 [this message]
2003-02-08 21:27 paolo
2003-03-25 23:50 paolo
2003-04-28 15:17 bkoz
2003-04-28 17:17 bkoz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20030131121716.18795.qmail@sources.redhat.com \
    --to=peturr02@ru.is \
    --cc=gcc-gnats@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).