Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0bbed758c024bb72cec8219879dc87cb04c6dd5c
Commit:     0bbed758c024bb72cec8219879dc87cb04c6dd5c
Parent:     490cbd92ed4d9915b582f4e40c605eeb977e5d40
Author:     Takashi Iwai <[EMAIL PROTECTED]>
AuthorDate: Tue May 8 15:17:15 2007 +0200
Committer:  Jaroslav Kysela <[EMAIL PROTECTED]>
CommitDate: Fri May 11 16:56:17 2007 +0200

    [ALSA] hda-codec - Fix connection list in generic parser
    
    Fix the retrival of widget connection list in the generic parser.
    
    Signed-off-by: Takashi Iwai <[EMAIL PROTECTED]>
    Signed-off-by: Jaroslav Kysela <[EMAIL PROTECTED]>
---
 sound/pci/hda/hda_generic.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/pci/hda/hda_generic.c b/sound/pci/hda/hda_generic.c
index 1e5ff0c..000287f 100644
--- a/sound/pci/hda/hda_generic.c
+++ b/sound/pci/hda/hda_generic.c
@@ -133,7 +133,7 @@ static int add_new_node(struct hda_codec *codec, struct 
hda_gspec *spec, hda_nid
                        return -ENOMEM;
                }
        }
-       memcpy(node->conn_list, conn_list, nconns);
+       memcpy(node->conn_list, conn_list, nconns * sizeof(hda_nid_t));
        node->nconns = nconns;
        node->wid_caps = get_wcaps(codec, nid);
        node->type = (node->wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to