public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Throwing exception in constructor causes segfault
@ 2002-02-23 12:56 Craig Rodrigues
  2002-02-23 13:20 ` Andreas Schwab
  0 siblings, 1 reply; 5+ messages in thread
From: Craig Rodrigues @ 2002-02-23 12:56 UTC (permalink / raw)
  To: libstdc++; +Cc: gcc

Hi,

The following testcase was submitted in PR 5757:

class X
{
public:
  X ()
  {
    throw ""; 
  }

  ~X ()
  {
  }
};

int
main ()
{
  try
  {
    X *p = new X[4];
   delete[]p;
  }
  catch (...)
  {
  }
  return 0;
}


If this example is run, a segfault occurs.

The backtrace of the segfault is:
#0  operator delete[](void*) (ptr=0x804aa34) at del_opv.cc:36
#1  0x08048963 in main () at t.cpp:20
#2  0x401202ae in __libc_start_main (main=0x8048890 <main>, argc=1, 
    ubp_av=0xbffff754, init=0x8048670 <_init>, fini=0x8048a50 <_fini>, 
    rtld_fini=0x4000cf28 <_dl_fini>, stack_end=0xbffff74c)
    at ../sysdeps/generic/libc-start.c:129


I don't know how this stuff works, but I am guessing
that for some reason, during the stack unwinding, the
destructor is being called on *p, even though it
is not fully constructed, and this is causing problems.

Does anyone have any ideas about this?

Thanks.
-- 
Craig Rodrigues        
http://www.gis.net/~craigr    
rodrigc@attbi.com

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

end of thread, other threads:[~2002-03-17 13:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-02-23 12:56 Throwing exception in constructor causes segfault Craig Rodrigues
2002-02-23 13:20 ` Andreas Schwab
2002-02-23 14:23   ` Craig Rodrigues
2002-02-23 15:20     ` Andreas Schwab
2002-03-17  5:54       ` Jason Merrill

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