From add44c2ed40fea56857b4ccc71aa3f9b69c75539 Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Wed, 23 Nov 2005 22:01:38 +0000 Subject: [PATCH] Use the correct read length in ConReadConsoleInput. svn path=/trunk/; revision=19505 --- reactos/subsys/system/usetup/console.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/subsys/system/usetup/console.c b/reactos/subsys/system/usetup/console.c index 0e913a8954c..0fd9d35b3f9 100644 --- a/reactos/subsys/system/usetup/console.c +++ b/reactos/subsys/system/usetup/console.c @@ -199,8 +199,7 @@ ConReadConsoleInput(PINPUT_RECORD Buffer) NULL, &Iosb, &InputData, -// &Buffer->Event.KeyEvent, - sizeof(KEY_EVENT_RECORD), + sizeof(KEYBOARD_INPUT_DATA), NULL, 0);