From 57dd6cd2a32609b046f0e12dab9588679205c73d Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Fri, 21 Sep 2007 11:19:38 +0200 Subject: [PATCH 1/1] fsck.c: Fix a double free bug. --- fsck.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fsck.c b/fsck.c index 5f95b74f..391516f3 100644 --- a/fsck.c +++ b/fsck.c @@ -571,6 +571,7 @@ static int check_disk_storage_columns(struct osl_table *t) out_close_hash_tree: osl_close_table(hash_tree_table, 0); free(hashes); + hashes = NULL; out: clear_rbtrees(t); /* TODO why are we doing that here? Seems odd */ return ret; -- 2.30.2