Add check on length of name.

pull/1558/head
Celine Lee 2 years ago committed by GitHub
parent 01292939d3
commit e9540fb14a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -66,7 +66,7 @@ iterate_device (const char *name, void *data)
int found = 0;
/* Skip floppy drives when requested. */
if (ctx->no_floppy &&
if (ctx->no_floppy && strlen(name) > 2 &&
name[0] == 'f' && name[1] == 'd' && name[2] >= '0' && name[2] <= '9')
return 1;

Loading…
Cancel
Save