ALSA: jack: Fix endless loop at unique index detection
authorTakashi Iwai <tiwai@suse.de>
Fri, 26 Jun 2015 04:59:57 +0000 (06:59 +0200)
committerTakashi Iwai <tiwai@suse.de>
Fri, 26 Jun 2015 04:59:57 +0000 (06:59 +0200)
commit7378bc2f19f841b25f1e27c7abce1ecc298f71f1
tree8b79256e1f51cee31805bcc210d2bd39811662dd
parent650474fb737c3e0ea0f6ab8e43c2cd161080ce5c
ALSA: jack: Fix endless loop at unique index detection

While the commit [d0a601c278de: ALSA: jack: Fix the id uniqueness
check] fixes the wrong string check, it leads to a worse result -- the
loop in get_available_index() goes into an endless loop.  The cause is
that snd_ctl_find_id() returns the object assigned to the numid if
it's set.  Thus it points to the previous entry again.

This patch clears the numid field for the next call properly.

Reported-and-tested-by: Tomáš Pružina <pruzinat@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/ctljack.c