aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_via.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-07-08 11:35:11 +0200
committerTakashi Iwai <tiwai@suse.de>2011-07-08 11:35:11 +0200
commit21d45d2ba97fa5bcb41b444095338dde792026d3 (patch)
treed0120c8ce0d2e6ddbe20ceb4f772e3355708219f /sound/pci/hda/patch_via.c
parente47706295843730c815dbc98f47ed2f75e051109 (diff)
ALSA: hda - Fix Oops in smart51 parsing in VIA codec
Typical off-by-one thinko. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_via.c')
-rw-r--r--sound/pci/hda/patch_via.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c
index dbc862e4ff1..d051cb53dd8 100644
--- a/sound/pci/hda/patch_via.c
+++ b/sound/pci/hda/patch_via.c
@@ -1802,7 +1802,7 @@ static void mangle_smart51(struct hda_codec *codec)
for (j = 0; j < nums; j++)
if (ins[pins[j]].type < ins[i].type) {
memmove(pins + j + 1, pins + j,
- (nums - j - 1) * sizeof(int));
+ (nums - j) * sizeof(int));
break;
}
pins[j] = i;