From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19821 invoked by alias); 31 Jan 2003 12:26:01 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 19802 invoked by uid 71); 31 Jan 2003 12:26:00 -0000 Resent-Date: 31 Jan 2003 12:26:00 -0000 Resent-Message-ID: <20030131122600.19801.qmail@sources.redhat.com> Resent-From: gcc-gnats@gcc.gnu.org (GNATS Filer) Resent-Cc: gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org Resent-Reply-To: gcc-gnats@gcc.gnu.org, peturr02@ru.is Received: (qmail 18796 invoked by uid 48); 31 Jan 2003 12:17:16 -0000 Message-Id: <20030131121716.18795.qmail@sources.redhat.com> Date: Fri, 31 Jan 2003 12:26:00 -0000 From: peturr02@ru.is Reply-To: peturr02@ru.is To: gcc-gnats@gcc.gnu.org X-Send-Pr-Version: gnatsweb-2.9.3 (1.1.1.1.2.31) Subject: libstdc++/9523: ios_base::sync_with_stdio clobbers standard streams X-SW-Source: 2003-01/txt/msg01751.txt.bz2 List-Id: >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 #undef NDEBUG #include 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; }