diff options
author | Florin Malita <fmalita@gmail.com> | 2006-09-29 06:55:25 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-10-06 14:22:59 -0400 |
commit | 104326f8df9925317cca64b84249d3eac5de7c74 (patch) | |
tree | c97b00520884caf405da958c0f04b07ed21017f7 /sound | |
parent | 92b93d31718a3ccbbcf911d2f570bb345c496d66 (diff) |
[ALSA] Dereference after free in snd_hwdep_release()
snd_card_file_remove() may free hw->card so we can't dereference
hw->card->module after that.
Coverity ID 1420.
Signed-off-by: Florin Malita <fmalita@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/core/hwdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/core/hwdep.c b/sound/core/hwdep.c index 9aa9d94891f0..46b47689362c 100644 --- a/sound/core/hwdep.c +++ b/sound/core/hwdep.c | |||
@@ -158,6 +158,7 @@ static int snd_hwdep_release(struct inode *inode, struct file * file) | |||
158 | { | 158 | { |
159 | int err = -ENXIO; | 159 | int err = -ENXIO; |
160 | struct snd_hwdep *hw = file->private_data; | 160 | struct snd_hwdep *hw = file->private_data; |
161 | struct module *mod = hw->card->module; | ||
161 | mutex_lock(&hw->open_mutex); | 162 | mutex_lock(&hw->open_mutex); |
162 | if (hw->ops.release) { | 163 | if (hw->ops.release) { |
163 | err = hw->ops.release(hw, file); | 164 | err = hw->ops.release(hw, file); |
@@ -167,7 +168,7 @@ static int snd_hwdep_release(struct inode *inode, struct file * file) | |||
167 | hw->used--; | 168 | hw->used--; |
168 | snd_card_file_remove(hw->card, file); | 169 | snd_card_file_remove(hw->card, file); |
169 | mutex_unlock(&hw->open_mutex); | 170 | mutex_unlock(&hw->open_mutex); |
170 | module_put(hw->card->module); | 171 | module_put(mod); |
171 | return err; | 172 | return err; |
172 | } | 173 | } |
173 | 174 | ||