public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/55635] New: Deallocation function ("operator delete") not called when destructor throws exception
@ 2012-12-09 23:53 joedoefawnbuck at googlemail dot com
  2012-12-10  0:56 ` [Bug c++/55635] " redi at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: joedoefawnbuck at googlemail dot com @ 2012-12-09 23:53 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55635
           Summary: Deallocation function ("operator delete") not called
                    when destructor throws exception
    Classification: Unclassified
           Product: gcc
           Version: 4.7.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: joedoefawnbuck@googlemail.com


According to C++11, 5.3.5/7, the deallocation function of a dynamically
allocated object must be called upon a `delete` expression regardless of
whether the destructor exits with an exception or not.

However, when I run the following code through valgrind, it says that I have
one still-reachable block:

struct Foo { ~Foo() { throw 0; } };

int main()
{
    auto p = new Foo;
    try { delete p; }
    catch (...) { }
}

Am I reading the standard right that the memory should be deallocated
regardless?

(SO discussion: http://stackoverflow.com/q/13792981/596781)


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

end of thread, other threads:[~2021-12-10 11:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-09 23:53 [Bug c++/55635] New: Deallocation function ("operator delete") not called when destructor throws exception joedoefawnbuck at googlemail dot com
2012-12-10  0:56 ` [Bug c++/55635] " redi at gcc dot gnu.org
2012-12-10  9:09 ` joedoefawnbuck at googlemail dot com
2012-12-10  9:10 ` joedoefawnbuck at googlemail dot com
2012-12-10 10:37 ` redi at gcc dot gnu.org
2021-12-10 11:36 ` pinskia at gcc dot gnu.org
2021-12-10 11:36 ` pinskia at gcc dot gnu.org

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