* libsupc++/exception_support.cc (__cp_pop_exception): Fix
uninitialized thinko in last change.
From-SVN: r39063
+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
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;