Re: Crash during throw_func()



Okay, patch submitted:

 http://bugzilla.gnome.org/show_bug.cgi?id=365038

Thanks for the advice, Murray.

--Matt

On 10/25/06, Murray Cumming <murrayc murrayc com> wrote:
On Wed, 2006-10-25 at 10:35 -0500, Matt Hoosier wrote:
> Good idea. What's the preferred way to handle situations like this:
>
>   Handle::~Handle()
>   {
>     if(gobj())
>       close(); // This may throw an exception
>   }
>
> There's not really an opportunity to pass back the auto_ptr<exception>
> in this case. Should we just do:
>
>   Handle::~Handle()
>   {
>     if(gobj())
>     {
>       std::auto_ptr<Gnome::Vfs::exception> error;
>       close(error);
>     }
>   }
>
> and ignore the fact that the error may be set?

I think that's the only way. I can't see how we could do anything else
during a destructor.

--
Murray Cumming
murrayc murrayc com
www.murrayc.com
www.openismus.com





[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]