diff options
author | DJ Delorie <dj@redhat.com> | 2006-02-21 02:01:56 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2006-02-21 02:01:56 +0000 |
commit | 1c7a49d2073aeb6961da9aa585efe1e890d8b66e (patch) | |
tree | 1e31f1dac3558acf006e7e45cc211e00d6df7e5d /libiberty | |
parent | 22d606e9c28ce92ff1fd0f006b2878ab685cd0b6 (diff) | |
download | gdb-1c7a49d2073aeb6961da9aa585efe1e890d8b66e.zip gdb-1c7a49d2073aeb6961da9aa585efe1e890d8b66e.tar.gz gdb-1c7a49d2073aeb6961da9aa585efe1e890d8b66e.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rw-r--r-- | libiberty/partition.c | 1 | ||||
-rw-r--r-- | libiberty/pexecute.c | 5 |
3 files changed, 10 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index e319e76..46ab074 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2006-02-17 Uttam Pawar <uttamp@us.ibm.com> + + * pexecute.c (pwait): Free vector pointer. + * partition.c (partition_print): Free class_elements pointer. + 2006-02-11 Roger Sayle <roger@eyesopen.com> R. Scott Bailey <scott.bailey@eds.com> Bill Northcott <w.northcott@unsw.edu.au> diff --git a/libiberty/partition.c b/libiberty/partition.c index c145cdb..5f0745c 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); } diff --git a/libiberty/pexecute.c b/libiberty/pexecute.c index cce6e30..fa65fe8 100644 --- a/libiberty/pexecute.c +++ b/libiberty/pexecute.c @@ -101,7 +101,10 @@ pwait (int pid, int *status, int flags ATTRIBUTE_UNUSED) vector = XNEWVEC (int, idx); if (!pex_get_status (pex, idx, vector)) - return -1; + { + free (vector) + return -1; + } *status = vector[pid]; free (vector); } |