projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b6251db
)
ubifs: no NULL check needed before free
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Wed, 8 Nov 2017 21:28:47 +0000
(22:28 +0100)
committer
Heiko Schocher
<hs@denx.de>
Mon, 20 Nov 2017 09:13:33 +0000
(10:13 +0100)
kfree() calls free.
free() checks if the parameter is NULL.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
fs/ubifs/ubifs.c
patch
|
blob
|
history
diff --git
a/fs/ubifs/ubifs.c
b/fs/ubifs/ubifs.c
index
8f1c9d1
..
4465523
100644
(file)
--- a/
fs/ubifs/ubifs.c
+++ b/
fs/ubifs/ubifs.c
@@
-462,14
+462,10
@@
out:
dbg_gen("cannot find next direntry, error %d", err);
out_free:
- if (file->private_data)
- kfree(file->private_data);
- if (file)
- free(file);
- if (dentry)
- free(dentry);
- if (dir)
- free(dir);
+ kfree(file->private_data);
+ free(file);
+ free(dentry);
+ free(dir);
return ret;
}