diff options
Diffstat (limited to 'libctf/ctf-archive.c')
-rw-r--r-- | libctf/ctf-archive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libctf/ctf-archive.c b/libctf/ctf-archive.c index 5c16922..a13bac8 100644 --- a/libctf/ctf-archive.c +++ b/libctf/ctf-archive.c @@ -405,7 +405,7 @@ ctf_arc_close (ctf_archive_t *arc) else ctf_file_close (arc->ctfi_file); free ((void *) arc->ctfi_symsect.cts_data); - free ((void *) arc->ctfi_strsect.cts_data); + /* Do not free the ctfi_strsect: it is bound to the bfd. */ free (arc->ctfi_data); free (arc); } |