mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-02 09:40:20 +00:00
Add length check on command line input
This commit is contained in:
parent
2f95139c77
commit
4a9ae83d64
@ -11,7 +11,7 @@ int main(int argc, char **argv)
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (argv[1][0] == '-' && argv[1][1] == '6')
|
||||
if (strlen(argv[1]) > 1 && argv[1][0] == '-' && argv[1][1] == '6')
|
||||
{
|
||||
struct utsname buf;
|
||||
if (0 == uname(&buf))
|
||||
|
Loading…
Reference in New Issue
Block a user