* libsupc++/eh_globals.cc (~__eh_globals_init): Unset _M_init.

From-SVN: r115318
This commit is contained in:
Mike Stump 2006-07-10 21:50:34 +00:00 committed by Mike Stump
parent c76e55eafd
commit ff642329cf
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2006-07-10 Mike Stump <mrs@apple.com>
* libsupc++/eh_globals.cc (~__eh_globals_init): Unset _M_init.
2006-07-10 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/15448

View file

@ -111,6 +111,7 @@ struct __eh_globals_init
{
if (_M_init)
__gthread_key_delete(_M_key);
_M_init = false;
}
};