diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-30 23:15:58 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-30 23:15:58 +0000 |
commit | 154a3a80538ee31be5ac0cc92224e7c627e804df (patch) | |
tree | c65799a9e6d65882c4c12f8dff60016449170ac8 /gcc/except.c | |
parent | bd1b45bc6a493f3f7d2009c4104237bda50474bd (diff) | |
download | gcc-154a3a80538ee31be5ac0cc92224e7c627e804df.tar.gz |
Fix error in immediately preceeding patch.
* except.c (find_exception_handler_labels): Correct argument to free.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15812 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/except.c b/gcc/except.c index e6ec5df3232..6f3de662f7d 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -1848,7 +1848,7 @@ find_exception_handler_labels () } } - free (labels); + free (labels + min_labelno); } /* Perform sanity checking on the exception_handler_labels list. |