mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
If no arguments are passed to a subcommand that requires arguments,
error out before we deref a null pointer in the check for max length. Thanks to otis in IRC for the bug report. MFC after: 3 days
This commit is contained in:
parent
7034d8df04
commit
b8fc9a86a8
1 changed files with 3 additions and 1 deletions
|
|
@ -371,8 +371,10 @@ add_cmd(__unused int argc, char *argv[], ximgact_binmisc_entry_t *xbe)
|
|||
}
|
||||
|
||||
int
|
||||
name_cmd(__unused int argc, char *argv[], ximgact_binmisc_entry_t *xbe)
|
||||
name_cmd(int argc, char *argv[], ximgact_binmisc_entry_t *xbe)
|
||||
{
|
||||
if (argc == 0)
|
||||
usage("Required argument missing\n");
|
||||
if (strlen(argv[0]) > IBE_NAME_MAX)
|
||||
usage("'%s' string length longer than IBE_NAME_MAX (%d)",
|
||||
IBE_NAME_MAX);
|
||||
|
|
|
|||
Loading…
Reference in a new issue