From: Jiri Slaby Date: Wed, 11 Mar 2009 19:11:41 +0000 (+0100) Subject: ALSA: mixart, fix lock imbalance X-Git-Tag: v2.6.27.21~25 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e5c20fcaa584230da862c094bec61a6c44b34a6;p=thirdparty%2Fkernel%2Fstable.git ALSA: mixart, fix lock imbalance commit 82f5d57163abed2e5ff271d03217b6f90c616eb8 upstream. There is an omitted unlock in one snd_mixart_hw_params fail path. Fix it. Signed-off-by: Jiri Slaby Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- diff --git a/sound/pci/mixart/mixart.c b/sound/pci/mixart/mixart.c index 3dd0c7963273c..7e83131ce3da8 100644 --- a/sound/pci/mixart/mixart.c +++ b/sound/pci/mixart/mixart.c @@ -607,6 +607,7 @@ static int snd_mixart_hw_params(struct snd_pcm_substream *subs, /* set the format to the board */ err = mixart_set_format(stream, format); if(err < 0) { + mutex_unlock(&mgr->setup_mutex); return err; }