diff options
| author | Steven Whitehouse <swhiteho@redhat.com> | 2010-11-30 10:46:02 -0500 |
|---|---|---|
| committer | Steven Whitehouse <swhiteho@redhat.com> | 2010-11-30 10:46:02 -0500 |
| commit | e06dfc492870e1d380f02722cde084b724dc197b (patch) | |
| tree | 8fca288f44f494b64ad9eaa2d09f5b23b1633a4d | |
| parent | 086d8334cf73b3bb695b82dd864a7a8b00d96b7e (diff) | |
GFS2: Fix uninitialised error value in previous patch
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
| -rw-r--r-- | fs/gfs2/bmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c index ae7d205de0d..3c4039d5eef 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, | |||
| 763 | int metadata; | 763 | int metadata; |
| 764 | unsigned int revokes = 0; | 764 | unsigned int revokes = 0; |
| 765 | int x; | 765 | int x; |
| 766 | int error; | 766 | int error = 0; |
| 767 | 767 | ||
| 768 | if (!*top) | 768 | if (!*top) |
| 769 | sm->sm_first = 0; | 769 | sm->sm_first = 0; |
