From: Eric Sesterhenn Date: Wed, 28 Mar 2007 20:35:52 +0000 (+0200) Subject: [ALSA] fix NULL pointer dereference in sound/synth/emux/soundfont.c X-Git-Tag: v2.6.16.46-rc1~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4802c31e31c845cfe044dc66a0615363534066e9;p=thirdparty%2Fkernel%2Fstable.git [ALSA] fix NULL pointer dereference in sound/synth/emux/soundfont.c this is about coverity id #100. It seems the if statement is negated, since the else branch calls remove_info() with sflist->currsf as a parameter where it gets dereferenced. Signed-off-by: Eric Sesterhenn Signed-off-by: Takashi Iwai Signed-off-by: Adrian Bunk --- diff --git a/sound/synth/emux/soundfont.c b/sound/synth/emux/soundfont.c index 4c5754d4a2e80..56d48a1db2ddc 100644 --- a/sound/synth/emux/soundfont.c +++ b/sound/synth/emux/soundfont.c @@ -195,7 +195,7 @@ snd_soundfont_load(struct snd_sf_list *sflist, const void __user *data, break; case SNDRV_SFNT_REMOVE_INFO: /* patch must be opened */ - if (sflist->currsf) { + if (!sflist->currsf) { snd_printk("soundfont: remove_info: patch not opened\n"); rc = -EINVAL; } else {