mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
mtd: readtest: don't clobber error reports
Commit 2a6a28e792
("mtd: Make MTD tests cancelable") accidentally
clobbered any read failure reports.
Coverity CID #1296020
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
b787f68c36
commit
db7c727402
@ -191,9 +191,11 @@ static int __init mtd_readtest_init(void)
|
|||||||
err = ret;
|
err = ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = mtdtest_relax();
|
ret = mtdtest_relax();
|
||||||
if (err)
|
if (ret) {
|
||||||
|
err = ret;
|
||||||
goto out;
|
goto out;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (err)
|
if (err)
|
||||||
|
Loading…
Reference in New Issue
Block a user