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

Call init_parser() after parsing to clean up completely.

This commit is contained in:
Todd C. Miller 2021-02-01 20:37:59 -07:00
parent f30670a42f
commit d3735b98e9

View File

@ -53,6 +53,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
init_defaults();
init_parser("sudoers", false, true);
sudoersparse();
init_parser(NULL, false, true);
return 0;
}