ALSA: cs46xx: Fix memory leak at destructor
The release of module object itself was forgotten. Spotted by COVERIY CID 1162828. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
7552f34a79
commit
b75b1518a5
1 changed files with 1 additions and 0 deletions
|
@ -369,6 +369,7 @@ static void free_module_desc(struct dsp_module_desc *module)
|
||||||
kfree(module->segments[i].data);
|
kfree(module->segments[i].data);
|
||||||
kfree(module->segments);
|
kfree(module->segments);
|
||||||
}
|
}
|
||||||
|
kfree(module);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* firmware binary format:
|
/* firmware binary format:
|
||||||
|
|
Loading…
Add table
Reference in a new issue