2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 18:08:23 +00:00

Check defaults settings too.

This commit is contained in:
Todd C. Miller 2021-02-24 16:44:15 -07:00
parent 05767145b3
commit 39e80e47ba

View File

@ -299,7 +299,8 @@ LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
expand_tilde(&def_runchroot, runas_pw->pw_name); expand_tilde(&def_runchroot, runas_pw->pw_name);
} }
/* Check aliases. */ /* Check Defaults and aliases. */
check_defaults(&parse_tree, true);
check_aliases(&parse_tree, true, true, cb_unused); check_aliases(&parse_tree, true, true, cb_unused);
} }