exception_support.cc (__cp_pop_exception): Fix uninitialized thinko in last change.

* libsupc++/exception_support.cc (__cp_pop_exception): Fix
	uninitialized thinko in last change.

From-SVN: r39063
This commit is contained in:
Nathan Sidwell 2001-01-16 09:45:03 +00:00 committed by Nathan Sidwell
parent b6dfc391cb
commit 9607098926
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-01-16 Nathan Sidwell <nathan@codesourcery.com>
* libsupc++/exception_support.cc (__cp_pop_exception): Fix
uninitialized thinko in last change.
2001-01-16 Mark Mitchell <mark@codesourcery.com>
* libsupc++/exception_support.cc (__cp_pop_exception): Change

View File

@ -191,9 +191,9 @@ __cp_push_exception (void *value, void *type, cleanup_fn cleanup)
current catch block. */
extern "C" void
__cp_pop_exception (void* v)
__cp_pop_exception (void* p_)
{
cp_eh_info *p;
cp_eh_info *p = static_cast <cp_eh_info *> (p_);
cp_eh_info **stack = __get_eh_info ();
cp_eh_info **q = stack;