projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b10b62
)
ASoC: fsl_xcvr: fix potential resource leak
author
Viorel Suman
<viorel.suman@nxp.com>
Tue, 24 Nov 2020 14:19:57 +0000
(16:19 +0200)
committer
Mark Brown
<broonie@kernel.org>
Wed, 25 Nov 2020 12:54:43 +0000
(12:54 +0000)
"fw" variable must be relased before return.
Signed-off-by: Viorel Suman <viorel.suman@nxp.com>
Link:
https://lore.kernel.org/r/20201124141957.20481-1-viorel.suman@oss.nxp.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/fsl/fsl_xcvr.c
patch
|
blob
|
history
diff --git
a/sound/soc/fsl/fsl_xcvr.c
b/sound/soc/fsl/fsl_xcvr.c
index 2a28810d0e2913542c864c79c47a00f507382a25..3d58c88ea603d7c0dbb2158428d372a26a6a50ea 100644
(file)
--- a/
sound/soc/fsl/fsl_xcvr.c
+++ b/
sound/soc/fsl/fsl_xcvr.c
@@
-706,6
+706,7
@@
static int fsl_xcvr_load_firmware(struct fsl_xcvr *xcvr)
/* RAM is 20KiB = 16KiB code + 4KiB data => max 10 pages 2KiB each */
if (rem > 16384) {
dev_err(dev, "FW size %d is bigger than 16KiB.\n", rem);
+ release_firmware(fw);
return -ENOMEM;
}