ALSA: usb-audio: fix a memory leak bug
authorWenwen Wang <wenwen@cs.uga.edu>
Tue, 6 Aug 2019 07:00:27 +0000 (03:00 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 16 Aug 2019 08:12:50 +0000 (10:12 +0200)
commitd4d904e4e258e1e5c794af3e702d6f6ecc8fd56d
tree72156589d782e91d75f615bbbcd1e97195782c1e
parente0d262a57fc741a9b362e458c714e37a77ddb62d
ALSA: usb-audio: fix a memory leak bug

commit a67060201b746a308b1674f66bf289c9faef6d09 upstream.

In snd_usb_get_audioformat_uac3(), a structure for channel maps 'chmap' is
allocated through kzalloc() before the execution goto 'found_clock'.
However, this structure is not deallocated if the memory allocation for
'pd' fails, leading to a memory leak bug.

To fix the above issue, free 'fp->chmap' before returning NULL.

Fixes: 7edf3b5e6a45 ("ALSA: usb-audio: AudioStreaming Power Domain parsing")
Signed-off-by: Wenwen Wang <wenwen@cs.uga.edu>
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/usb/stream.c