From: Takashi Sakamoto Date: Mon, 17 Sep 2018 08:26:41 +0000 (+0900) Subject: ALSA: fireworks: fix memory leak of response buffer at error path X-Git-Tag: v4.19-rc5~22^2~1 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c3b55e2ec9c76e7a0de2a0b1dc851fdc9440385b;p=users%2Fhch%2Fuuid.git ALSA: fireworks: fix memory leak of response buffer at error path After allocating memory object for response buffer, ALSA fireworks driver has leak of the memory object at error path. This commit releases the object at the error path. Fixes: 7d3c1d5901aa('ALSA: fireworks: delayed registration of sound card') Cc: # v4.7+ Signed-off-by: Takashi Sakamoto Signed-off-by: Takashi Iwai --- diff --git a/sound/firewire/fireworks/fireworks.c b/sound/firewire/fireworks/fireworks.c index 71a0613d3da0..f2d073365cf6 100644 --- a/sound/firewire/fireworks/fireworks.c +++ b/sound/firewire/fireworks/fireworks.c @@ -301,6 +301,8 @@ error: snd_efw_transaction_remove_instance(efw); snd_efw_stream_destroy_duplex(efw); snd_card_free(efw->card); + kfree(efw->resp_buf); + efw->resp_buf = NULL; dev_info(&efw->unit->device, "Sound card registration failed: %d\n", err); }