From: Clemens Ladisch Date: Fri, 18 May 2012 16:00:43 +0000 (+0200) Subject: ALSA: usb-audio: fix rate_list memory leak X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5cd5d7c44990658df6ab49f6253c39617c53b03d;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git ALSA: usb-audio: fix rate_list memory leak The array of sample rates is reallocated every time when opening the PCM device, but was freed only once when unplugging the device. Reported-by: "Alexander E. Patrakov" Cc: Signed-off-by: Clemens Ladisch Signed-off-by: Takashi Iwai --- diff --git a/sound/usb/pcm.c b/sound/usb/pcm.c index 24839d93264..cdf8b760197 100644 --- a/sound/usb/pcm.c +++ b/sound/usb/pcm.c @@ -788,6 +788,9 @@ static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime, int count = 0, needs_knot = 0; int err; + kfree(subs->rate_list.list); + subs->rate_list.list = NULL; + list_for_each_entry(fp, &subs->fmt_list, list) { if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS) return 0;