summaryrefslogtreecommitdiff
path: root/fs/gfs2/bmap.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2008-02-12 12:14:59 +0000
committerSteven Whitehouse <swhiteho@redhat.com>2008-03-31 10:40:50 +0100
commitc85a665f064863cc8a2fe88e5f1eb4def5446e90 (patch)
treee0494fb688424e7c27a4e372b02f245a2b3fb3c4 /fs/gfs2/bmap.c
parentb45e41d7d56dfef1ae9e02e6c59990066ba82e5c (diff)
[GFS2] The case of the missing asterisk
A dereference was forgotten. This adds it back correctly. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/bmap.c')
-rw-r--r--fs/gfs2/bmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c
index 1fda731c074..7f72564e059 100644
--- a/fs/gfs2/bmap.c
+++ b/fs/gfs2/bmap.c
@@ -402,7 +402,7 @@ static int lookup_metapath(struct inode *inode, struct metapath *mp,
for (x = 0; x < end_of_metadata; x++) {
lookup_block(ip, x, mp, create, new, dblock);
- if (!dblock)
+ if (!*dblock)
return 0;
ret = gfs2_meta_indirect_buffer(ip, x+1, *dblock, *new, &mp->mp_bh[x+1]);