From: Wan Jiabing Date: Wed, 18 May 2022 02:16:16 +0000 (+0800) Subject: ALSA: usb-audio: Fix wrong kfree issue in snd_usb_endpoint_free_all X-Git-Tag: v6.6.17~6759^2~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03a8b0df757f1beb21ba1626e23ca7412e48b525;p=platform%2Fkernel%2Flinux-rpi.git ALSA: usb-audio: Fix wrong kfree issue in snd_usb_endpoint_free_all Fix following coccicheck error: ./sound/usb/endpoint.c:1671:8-10: ERROR: reference preceded by free on line 1671. Here should be 'cp' rather than 'ip'. Fixes: c11117b634f4 ("ALSA: usb-audio: Refcount multiple accesses on the single clock") Signed-off-by: Wan Jiabing Link: https://lore.kernel.org/r/20220518021617.10114-1-wanjiabing@vivo.com Signed-off-by: Takashi Iwai --- diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c index df5a700..f9c9216 100644 --- a/sound/usb/endpoint.c +++ b/sound/usb/endpoint.c @@ -1668,7 +1668,7 @@ void snd_usb_endpoint_free_all(struct snd_usb_audio *chip) kfree(ip); list_for_each_entry_safe(cp, cn, &chip->clock_ref_list, list) - kfree(ip); + kfree(cp); } /*