aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorRickard Strandqvist <rickard_strandqvist@spectrumdigital.se>2014-06-01 07:35:24 -0400
committerTakashi Iwai <tiwai@suse.de>2014-06-01 08:33:09 -0400
commit14577c25169beb8676577490bf2f0bd539d5e999 (patch)
tree2871257d84a53430a2224d08d14ae3a81d9f3834 /sound
parent2c6db77c021e89985c512ec9db9cbc5a34a7e3d9 (diff)
ALSA: synth: emux: soundfont.c: Cleaning up memory leak
There is a risk for memory leak in when something unexpected happens and the function returns. This was largely found by using a static code analysis program called cppcheck. [fixed a typo of kfree() by tiwai] Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/synth/emux/soundfont.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/synth/emux/soundfont.c b/sound/synth/emux/soundfont.c
index 1137b85c36e6..78683b2064f7 100644
--- a/sound/synth/emux/soundfont.c
+++ b/sound/synth/emux/soundfont.c
@@ -1021,6 +1021,7 @@ load_guspatch(struct snd_sf_list *sflist, const char __user *data,
1021 data, count); 1021 data, count);
1022 if (rc < 0) { 1022 if (rc < 0) {
1023 sf_sample_delete(sflist, sf, smp); 1023 sf_sample_delete(sflist, sf, smp);
1024 kfree(zone);
1024 return rc; 1025 return rc;
1025 } 1026 }
1026 /* memory offset is updated after */ 1027 /* memory offset is updated after */