Commit 3f34faec by Jim Wilson Committed by Jim Wilson

Fix error in immediately preceeding patch.

	* except.c (find_exception_handler_labels): Correct argument to free.

From-SVN: r15812
parent 3226dac5
Tue Sep 30 16:07:58 1997 Jim Wilson <wilson@cygnus.com>
* except.c (find_exception_handler_labels): Correct argument to free.
Tue Sep 30 11:00:00 1997 Brendan Kehoe <brendan@lisa.cygnus.com>
* except.c (find_exception_handler_labels): Free LABELS when we're
......
......@@ -1848,7 +1848,7 @@ find_exception_handler_labels ()
}
}
free (labels);
free (labels + min_labelno);
}
/* Perform sanity checking on the exception_handler_labels list.
......
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