mirror of https://github.com/ventoy/Ventoy.git
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;
|
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;
|
struct utsname buf;
|
||||||
if (0 == uname(&buf))
|
if (0 == uname(&buf))
|
||||||
|
|
Loading…
Reference in New Issue