ubifs: Fix compiler warning
The compiler warns that 'saved_nlink' declared in line 980 may be used uninitialized. Change-Id: Ie725c0efe949213b1281a70c779a3167b1961327 Acked-by: Kaushik Sikdar <ksikdar@qualcomm.com> Signed-off-by: Rohit Vaswani <rvaswani@codeaurora.org>
This commit is contained in:
parent
e5547a0625
commit
1fe3345090
|
@ -977,7 +977,7 @@ static int ubifs_rename(struct inode *old_dir, struct dentry *old_dentry,
|
||||||
struct ubifs_budget_req ino_req = { .dirtied_ino = 1,
|
struct ubifs_budget_req ino_req = { .dirtied_ino = 1,
|
||||||
.dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) };
|
.dirtied_ino_d = ALIGN(old_inode_ui->data_len, 8) };
|
||||||
struct timespec time;
|
struct timespec time;
|
||||||
unsigned int saved_nlink;
|
unsigned int saved_nlink = 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Budget request settings: deletion direntry, new direntry, removing
|
* Budget request settings: deletion direntry, new direntry, removing
|
||||||
|
|
Loading…
Reference in New Issue