mirror of
https://github.com/onyx-and-iris/vmrcli.git
synced 2025-02-22 17:55:26 +00:00
clear the input buffer before reading from stdin again
This commit is contained in:
parent
e06a26f87b
commit
947abb3c01
@ -205,7 +205,8 @@ void interactive(T_VBVMR_INTERFACE *vmr)
|
||||
memset(command, '\0', sizeof(command));
|
||||
}
|
||||
|
||||
p = input; /* reset pointer */
|
||||
p = input; /* reset pointer */
|
||||
memset(input, '\0', sizeof(input)); /* reset input buffer */
|
||||
printf(">> ");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user