From e06dfc492870e1d380f02722cde084b724dc197b Mon Sep 17 00:00:00 2001 From: Steven Whitehouse Date: Tue, 30 Nov 2010 15:46:02 +0000 Subject: [PATCH] GFS2: Fix uninitialised error value in previous patch Signed-off-by: Steven Whitehouse --- fs/gfs2/bmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c index ae7d205de0d1..3c4039d5eef1 100644 --- a/fs/gfs2/bmap.c +++ b/fs/gfs2/bmap.c @@ -763,7 +763,7 @@ static int do_strip(struct gfs2_inode *ip, struct buffer_head *dibh, int metadata; unsigned int revokes = 0; int x; - int error; + int error = 0; if (!*top) sm->sm_first = 0;