]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
aft.c: Fix a memory leak in open_and_update_audio_file().
authorAndre Noll <maan@systemlinux.org>
Thu, 17 Jan 2008 20:59:01 +0000 (21:59 +0100)
committerAndre Noll <maan@systemlinux.org>
Thu, 17 Jan 2008 20:59:01 +0000 (21:59 +0100)
If make_status_items() fails, we return an error but
do not free the chunk table buffer.

Also get rid of a pointless "goto err".

aft.c

diff --git a/aft.c b/aft.c
index 0bf38fe691838b78cc35a1a8cde344147b5d4f47..d843692934df671684d383ba4ec59996659ef75e 100644 (file)
--- a/aft.c
+++ b/aft.c
@@ -660,6 +660,7 @@ int open_and_update_audio_file(struct osl_row *aft_row, long score,
                AFTCOL_CHUNKS, &chunk_table_obj);
        if (ret < 0)
                return ret;
+       afd->afhi.chunk_table = NULL;
        ret = mmap_full_file(path, O_RDONLY, &map.data,
                &map.size, &afd->fd);
        if (ret < 0)
@@ -697,10 +698,8 @@ int open_and_update_audio_file(struct osl_row *aft_row, long score,
        aced.old_afsi = &old_afsi;
        afs_event(AFSI_CHANGE, NULL, &aced);
        ret = save_afd(afd);
-       free(afd->afhi.chunk_table);
-       if (ret < 0)
-               goto err;
 err:
+       free(afd->afhi.chunk_table);
        osl_close_disk_object(&chunk_table_obj);
        return ret;
 }