aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/lops.c
diff options
context:
space:
mode:
authorBob Peterson <rpeterso@redhat.com>2008-01-28 16:35:13 -0600
committerSteven Whitehouse <swhiteho@redhat.com>2008-03-31 10:40:05 +0100
commit3ad62e87cd38817361e165cf4ad496ab76e19e81 (patch)
treeb094e3244239d67d1d1c72abac50a1ba792aaa6a /fs/gfs2/lops.c
parent048786f1e6042022a8fb2035157a8c8c3a82a4f2 (diff)
downloadkernel_samsung_smdk4412-3ad62e87cd38817361e165cf4ad496ab76e19e81.zip
kernel_samsung_smdk4412-3ad62e87cd38817361e165cf4ad496ab76e19e81.tar.gz
kernel_samsung_smdk4412-3ad62e87cd38817361e165cf4ad496ab76e19e81.tar.bz2
[GFS2] Plug an unlikely leak
Signed-off-by: Bob Peterson <rpeterso@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/lops.c')
-rw-r--r--fs/gfs2/lops.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/gfs2/lops.c b/fs/gfs2/lops.c
index 7138737..4390f6f 100644
--- a/fs/gfs2/lops.c
+++ b/fs/gfs2/lops.c
@@ -404,8 +404,10 @@ static int revoke_lo_scan_elements(struct gfs2_jdesc *jd, unsigned int start,
blkno = be64_to_cpu(*(__be64 *)(bh->b_data + offset));
error = gfs2_revoke_add(sdp, blkno, start);
- if (error < 0)
+ if (error < 0) {
+ brelse(bh);
return error;
+ }
else if (error)
sdp->sd_found_revokes++;