1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-03-22 10:25:43 +00:00

Merge pull request #155 from gm4tr1x/master

Fixed compiler warning for windows build
This commit is contained in:
Jens Steube 2016-01-24 17:21:08 +01:00
commit 0102aef229

View File

@ -2446,10 +2446,12 @@ int tty_getchar()
// Then it wants to read with getche () a keyboard input
// which has never been made.
INPUT_RECORD buf[100] = { 0 };
INPUT_RECORD buf[100];
DWORD num = 0;
memset (buf, 0, sizeof (buf));
ReadConsoleInput (stdinHandle, buf, 100, &num);
FlushConsoleInputBuffer (stdinHandle);