check length of string for 'Q'

This commit is contained in:
onyx-and-iris 2024-06-25 17:08:31 +01:00
parent 278abf8e86
commit e7ea31eb21

View File

@ -124,7 +124,7 @@ void interactive(T_VBVMR_INTERFACE *vmr)
while (fgets(input, MAX_LINE, stdin) != NULL) while (fgets(input, MAX_LINE, stdin) != NULL)
{ {
if (strncmp(input, "Q", 1) == 0 || strncmp(input, "q", 1) == 0) if (strlen(input) == 2 && (strncmp(input, "Q", 1) == 0 || strncmp(input, "q", 1) == 0))
break; break;
set_parameters(vmr, input); set_parameters(vmr, input);