mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-02 09:40:20 +00:00
Add check on length of name.
This commit is contained in:
parent
01292939d3
commit
e9540fb14a
@ -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…
Reference in New Issue
Block a user