diff options
Diffstat (limited to 'lib/sqfs/read_table.c')
-rw-r--r-- | lib/sqfs/read_table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqfs/read_table.c b/lib/sqfs/read_table.c index 096ac1a..1c9c8ad 100644 --- a/lib/sqfs/read_table.c +++ b/lib/sqfs/read_table.c @@ -76,12 +76,12 @@ int sqfs_read_table(sqfs_file_t *file, sqfs_compressor_t *cmp, table_size -= diff; } - sqfs_meta_reader_destroy(m); + sqfs_destroy(m); free(locations); *out = data; return 0; fail: - sqfs_meta_reader_destroy(m); + sqfs_destroy(m); fail_idx: free(locations); fail_data: |