aboutsummaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authortinguely@sgi.com <tinguely@sgi.com>2013-09-27 09:00:55 -0500
committerBen Myers <bpm@sgi.com>2013-10-04 13:56:03 -0500
commit9b3b77fe661875f19ed748b67fb1eeb57d602b7e (patch)
tree05d11ca11b2e0011419122fc49d2ee8eac761fb4 /fs
parent6d313498f035abc9d8ad3a1b3295f133bfab9638 (diff)
xfs: fix memory leak in xlog_recover_add_to_trans
Free the memory in error path of xlog_recover_add_to_trans(). Normally this memory is freed in recovery pass2, but is leaked in the error path. Signed-off-by: Mark Tinguely <tinguely@sgi.com> Reviewed-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Ben Myers <bpm@sgi.com> (cherry picked from commit 519ccb81ac1c8e3e4eed294acf93be00b43dcad6)
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/xfs_log_recover.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c
index cc179878fe4..43240583fd5 100644
--- a/fs/xfs/xfs_log_recover.c
+++ b/fs/xfs/xfs_log_recover.c
@@ -1585,6 +1585,7 @@ xlog_recover_add_to_trans(
"bad number of regions (%d) in inode log format",
in_f->ilf_size);
ASSERT(0);
+ free(ptr);
return XFS_ERROR(EIO);
}