ALSA: hda: Use struct_size()
authorTakashi Iwai <tiwai@suse.de>
Fri, 31 May 2019 09:46:49 +0000 (11:46 +0200)
committerTakashi Iwai <tiwai@suse.de>
Fri, 31 May 2019 09:46:49 +0000 (11:46 +0200)
For code simplification and safety, use struct_size() macro for
calculating the hda_conn_list object size with the variable array.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/hda_codec.c

index b20eb7fc83eb277d9e0ebbe1353682aae3e59d82..d0f1dbcfbda4f376b32baa90e6df2dfa88901274 100644 (file)
@@ -122,7 +122,7 @@ static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
 {
        struct hda_conn_list *p;
 
-       p = kmalloc(sizeof(*p) + len * sizeof(hda_nid_t), GFP_KERNEL);
+       p = kmalloc(struct_size(p, conns, len), GFP_KERNEL);
        if (!p)
                return -ENOMEM;
        p->len = len;