提交 044ace5e 编写于 作者: M Markus Elfring 提交者: Takashi Iwai

ALSA: hal2: Improve a size determination in hal2_create()

Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.

This issue was detected by using the Coccinelle software.
Signed-off-by: NMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 a4a1b737
...@@ -814,7 +814,7 @@ static int hal2_create(struct snd_card *card, struct snd_hal2 **rchip) ...@@ -814,7 +814,7 @@ static int hal2_create(struct snd_card *card, struct snd_hal2 **rchip)
struct hpc3_regs *hpc3 = hpc3c0; struct hpc3_regs *hpc3 = hpc3c0;
int err; int err;
hal2 = kzalloc(sizeof(struct snd_hal2), GFP_KERNEL); hal2 = kzalloc(sizeof(*hal2), GFP_KERNEL);
if (!hal2) if (!hal2)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册