Commit d3a36404 by Philippe De Muyter Committed by Philippe De Muyter

* except.c (free_exception_table): Do not free NULL.

From-SVN: r34263
parent 79368e3f
Tue May 30 09:57:32 2000 Philippe De Muyter <phdm@macqel.be>
* except.c (free_exception_table): Do not free NULL.
2000-05-29 Zack Weinberg <zack@wolery.cumb.org>
* cpplib.c (do_if): Don't save and restore only_seen_white here.
......@@ -2297,7 +2297,8 @@ set_exception_version_code (code)
void
free_exception_table ()
{
free (eh_table);
if (eh_table)
free (eh_table);
clear_function_eh_region ();
}
......
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