Commit e8a0e412 authored by Jesper Juhl's avatar Jesper Juhl Committed by Artem Bityutskiy

jffs2: Avoid unneeded 'if' before kfree

kfree() deals gracefully with NULL pointers, so it's pointless to test for
one prior to calling it.
This removes such a test from jffs2_scan_medium().
Signed-off-by: default avatarJesper Juhl <jj@chaosbits.net>
Signed-off-by: default avatarArtem Bityutskiy <dedekind1@gmail.com>
parent e638275e
...@@ -275,9 +275,7 @@ int jffs2_scan_medium(struct jffs2_sb_info *c) ...@@ -275,9 +275,7 @@ int jffs2_scan_medium(struct jffs2_sb_info *c)
else else
c->mtd->unpoint(c->mtd, 0, c->mtd->size); c->mtd->unpoint(c->mtd, 0, c->mtd->size);
#endif #endif
if (s) kfree(s);
kfree(s);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment