]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix error in immediately preceeding patch.
authorJim Wilson <wilson@cygnus.com>
Tue, 30 Sep 1997 23:15:58 +0000 (23:15 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Tue, 30 Sep 1997 23:15:58 +0000 (16:15 -0700)
* except.c (find_exception_handler_labels): Correct argument to free.

From-SVN: r15812

gcc/ChangeLog
gcc/except.c

index cbc6eea2f53250fc778647f9bdfa813de5320a48..c781c859623520f2aafd8f72d508099d41fe2997 100644 (file)
@@ -1,3 +1,7 @@
+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
index e6ec5df323212091f3ab3e334f2f783f48b2b4b6..6f3de662f7d101f8031573a56425e7d195cb818c 100644 (file)
@@ -1848,7 +1848,7 @@ find_exception_handler_labels ()
        }
     }
 
-  free (labels);
+  free (labels + min_labelno);
 }
 
 /* Perform sanity checking on the exception_handler_labels list.