commit | 0ff50c9063e490a1e06698a895406ef3aeeee987 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | Tue Sep 29 21:48:08 2020 +0200 |
committer | Peng Fan <peng.fan@nxp.com> | Mon Oct 12 15:53:20 2020 +0800 |
tree | f5bc6e5215fb905a9aa8ca3b45ac5b2629316ecb | |
parent | 02016c6f39dd924393c4402d4fad47197d5cb5b7 [diff] |
mmc: do not check argument of free() beforehand free() checks if its argument in NULL. No need to check it twice. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
diff --git a/drivers/mmc/sh_sdhi.c b/drivers/mmc/sh_sdhi.c index 315f95c..29f83b6 100644 --- a/drivers/mmc/sh_sdhi.c +++ b/drivers/mmc/sh_sdhi.c
@@ -784,8 +784,7 @@ return ret; error: - if (host) - free(host); + free(host); return ret; }