Commit 96070989 by Nathan Sidwell Committed by Nathan Sidwell

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
parent b6dfc391
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> 2001-01-16 Mark Mitchell <mark@codesourcery.com>
* libsupc++/exception_support.cc (__cp_pop_exception): Change * libsupc++/exception_support.cc (__cp_pop_exception): Change
......
...@@ -191,9 +191,9 @@ __cp_push_exception (void *value, void *type, cleanup_fn cleanup) ...@@ -191,9 +191,9 @@ __cp_push_exception (void *value, void *type, cleanup_fn cleanup)
current catch block. */ current catch block. */
extern "C" void 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 **stack = __get_eh_info ();
cp_eh_info **q = stack; cp_eh_info **q = stack;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment