gfs2_edit: Fix memory leak in dump_journal()
Spotted by coverity: Variable "j_inode" going out of scope leaks the
storage it points to.
Signed-off-by: Andrew Price <anprice@redhat.com>
---
gfs2/edit/hexedit.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/gfs2/edit/hexedit.c b/gfs2/edit/hexedit.c
index 72ee7d2..b05a7d6 100644
--- a/gfs2/edit/hexedit.c
+++ b/gfs2/edit/hexedit.c
@@ -2775,6 +2775,7 @@ static void dump_journal(const char *journal)
block = saveblk;
}
}
+ inode_put(&j_inode);
brelse(j_bh);
blockhist = -1; /* So we don't print anything else */
free(jbuf);
--
1.7.6.4
|