ocfs2: Add missing initialization
Add missing variable initialization to ocfs2_dquot_drop_slow(). Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Mark Fasheh <mfasheh@suse.com>
This commit is contained in:
parent
b86c86fa1f
commit
57a09a7b3d
1 changed files with 1 additions and 1 deletions
|
@ -870,7 +870,7 @@ out:
|
||||||
|
|
||||||
static int ocfs2_dquot_drop_slow(struct inode *inode)
|
static int ocfs2_dquot_drop_slow(struct inode *inode)
|
||||||
{
|
{
|
||||||
int status;
|
int status = 0;
|
||||||
int cnt;
|
int cnt;
|
||||||
int got_lock[MAXQUOTAS] = {0, 0};
|
int got_lock[MAXQUOTAS] = {0, 0};
|
||||||
handle_t *handle;
|
handle_t *handle;
|
||||||
|
|
Loading…
Reference in a new issue