diff options
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/vt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/char/vt.c b/drivers/char/vt.c index 6650ae1c088f..5db295d7a879 100644 --- a/drivers/char/vt.c +++ b/drivers/char/vt.c | |||
@@ -729,10 +729,9 @@ int vc_allocate(unsigned int currcons) /* return 0 on success */ | |||
729 | /* although the numbers above are not valid since long ago, the | 729 | /* although the numbers above are not valid since long ago, the |
730 | point is still up-to-date and the comment still has its value | 730 | point is still up-to-date and the comment still has its value |
731 | even if only as a historical artifact. --mj, July 1998 */ | 731 | even if only as a historical artifact. --mj, July 1998 */ |
732 | vc = kmalloc(sizeof(struct vc_data), GFP_KERNEL); | 732 | vc = kzalloc(sizeof(struct vc_data), GFP_KERNEL); |
733 | if (!vc) | 733 | if (!vc) |
734 | return -ENOMEM; | 734 | return -ENOMEM; |
735 | memset(vc, 0, sizeof(*vc)); | ||
736 | vc_cons[currcons].d = vc; | 735 | vc_cons[currcons].d = vc; |
737 | INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK); | 736 | INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK); |
738 | visual_init(vc, currcons, 1); | 737 | visual_init(vc, currcons, 1); |