Re: [Patch] Fix PR58737

2013-10-15 Thread Jonathan Wakely
On 15 October 2013 15:56, Tim Shen wrote: > This memory leak is because forgetting virtual destructor of the base > class _Executor. > > Thanks! Great, if it passes the testsuite please commit it. Thanks for the quick fix, and to Paolo for identifying the cause!

Re: [Patch] Fix PR58737

2013-10-15 Thread Tim Shen
On Tue, Oct 15, 2013 at 11:01 AM, Jonathan Wakely wrote: > Great, if it passes the testsuite please commit it. It surely passed -m32 and -m64, and committed :) -- Tim Shen

Re: [Patch] Fix PR58737

2013-10-15 Thread Paolo Carlini
On 10/15/2013 04:56 PM, Tim Shen wrote: This memory leak is because forgetting virtual destructor of the base class _Executor. Of course. Thanks, Paolo.