瀏覽代碼

ASoC: Intel: Remove invalid kfree of devm allocated data

kbuild robot reports following warning:
"sound/soc/intel/haswell/sst-haswell-ipc.c:2204:1-6:
 WARNING: invalid free of devm_ allocated data"

As julia explains to me, the memory allocated with devm_kalloc
is freed automatically on failure of a probe function. So this
kfree should be removed otherwise the double free will be got in
error handler path.

Signed-off-by: Jin Yao <yao.jin@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Jin Yao 10 年之前
父節點
當前提交
ac98b4c015
共有 1 個文件被更改,包括 0 次插入1 次删除
  1. 0 1
      sound/soc/intel/haswell/sst-haswell-ipc.c

+ 0 - 1
sound/soc/intel/haswell/sst-haswell-ipc.c

@@ -2201,7 +2201,6 @@ dma_err:
 dsp_new_err:
 dsp_new_err:
 	sst_ipc_fini(ipc);
 	sst_ipc_fini(ipc);
 ipc_init_err:
 ipc_init_err:
-	kfree(hsw);
 	return ret;
 	return ret;
 }
 }
 EXPORT_SYMBOL_GPL(sst_hsw_dsp_init);
 EXPORT_SYMBOL_GPL(sst_hsw_dsp_init);