diff options
author | Uttam Pawar <uttamp@us.ibm.com> | 2006-02-21 01:21:49 +0000 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2006-02-20 20:21:49 -0500 |
commit | 8f629dc52826bf3ffb9932cb2d359dac5163bae2 (patch) | |
tree | 48e71a1cc5afa0d5fb3e5d3f501e87c911629b01 /libiberty/partition.c | |
parent | 104d281d2064fb8fc51aeee3156381bc7b56be9b (diff) | |
download | gcc-8f629dc52826bf3ffb9932cb2d359dac5163bae2.tar.gz |
pexecute.c (pwait): Free vector pointer.
* pexecute.c (pwait): Free vector pointer.
* partition.c (partition_print): Free class_elements pointer.
From-SVN: r111325
Diffstat (limited to 'libiberty/partition.c')
-rw-r--r-- | libiberty/partition.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libiberty/partition.c b/libiberty/partition.c index c145cdb8f02..5f0745c9142 100644 --- a/libiberty/partition.c +++ b/libiberty/partition.c @@ -177,6 +177,7 @@ partition_print (partition part, FILE *fp) } fputc (']', fp); + free (class_elements); free (done); } |