public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/16959] New: [3.4/3.5 Regression] Segmentation fault in ios_base::sync_with_stdio
@ 2004-08-10  9:31 peturr02 at ru dot is
  2004-08-10  9:34 ` [Bug libstdc++/16959] " peturr02 at ru dot is
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: peturr02 at ru dot is @ 2004-08-10  9:31 UTC (permalink / raw)
  To: gcc-bugs

In src/ios_init.cc:

  bool 
  ios_base::sync_with_stdio(bool __sync)
  { 
    // _GLIBCXX_RESOLVE_LIB_DEFECTS
    // 49.  Underspecification of ios_base::sync_with_stdio
    bool __ret = ios_base::Init::_S_synced_with_stdio;

    // Turn off sync with C FILE* for cin, cout, cerr, clog iff
    // currently synchronized.
    if (!__sync && __ret)
      {
        ios_base::Init::_S_synced_with_stdio = __sync;

        // Explicitly call dtors to free any memory that is
        // dynamically allocated by filebuf ctor or member functions,
        // but don't deallocate all memory by calling operator delete.
        buf_cout_sync.~stdio_sync_filebuf<char>();
        buf_cin_sync.~stdio_sync_filebuf<char>();
        buf_cerr_sync.~stdio_sync_filebuf<char>();

This is fine, except that there is no guarantee that buf_cout_sync and friends
have been constructed before this gets run. If the objects haven't been
constructed, the program segfaults.

A simple fix would be to construct an ios_base::Init object at the beginning
of the block.

-- 
           Summary: [3.4/3.5 Regression] Segmentation fault in
                    ios_base::sync_with_stdio
           Product: gcc
           Version: 3.4.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libstdc++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: peturr02 at ru dot is
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16959


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2004-08-12  9:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-08-10  9:31 [Bug libstdc++/16959] New: [3.4/3.5 Regression] Segmentation fault in ios_base::sync_with_stdio peturr02 at ru dot is
2004-08-10  9:34 ` [Bug libstdc++/16959] " peturr02 at ru dot is
2004-08-10 20:55 ` pcarlini at suse dot de
2004-08-11  9:31 ` cvs-commit at gcc dot gnu dot org
2004-08-12  9:11 ` [Bug libstdc++/16959] [3.4 " cvs-commit at gcc dot gnu dot org
2004-08-12  9:12 ` pcarlini at suse dot de

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).