nandbcb: Fix uninitialized variable
Fix Coverity Issue 9006654. In write_fcb, use of an uninitialized variable "ret". Signed-off-by: Ye Li <ye.li@nxp.com> Reviewed-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
@@ -563,7 +563,7 @@ static int write_fcb(struct boot_config *boot_cfg, struct fcb_block *fcb)
|
||||
{
|
||||
struct mtd_info *mtd;
|
||||
void *fcb_raw_page = NULL;
|
||||
int i, ret;
|
||||
int i, ret = 0;
|
||||
loff_t off;
|
||||
size_t size;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user