浏览代码

[ALSA] Fix errors with user TLV_WRITE

Fixed the errors at checking info.access field during user TLV_WRITE
call.  It should have been zero-initialized.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Takashi Iwai 18 年之前
父节点
当前提交
86148e84c2
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      sound/core/control.c

+ 1 - 0
sound/core/control.c

@@ -1048,6 +1048,7 @@ static int snd_ctl_elem_add(struct snd_ctl_file *file,
 	if (ue == NULL)
 	if (ue == NULL)
 		return -ENOMEM;
 		return -ENOMEM;
 	ue->info = *info;
 	ue->info = *info;
+	ue->info.access = 0;
 	ue->elem_data = (char *)ue + sizeof(*ue);
 	ue->elem_data = (char *)ue + sizeof(*ue);
 	ue->elem_data_size = private_size;
 	ue->elem_data_size = private_size;
 	kctl.private_free = snd_ctl_elem_user_free;
 	kctl.private_free = snd_ctl_elem_user_free;