2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

Change some fatalx(NULL) that should be fatal(NULL).

This commit is contained in:
Todd C. Miller
2013-08-15 13:06:49 -06:00
parent 4928c8c72e
commit 85fc5792d4
5 changed files with 16 additions and 16 deletions

View File

@@ -366,7 +366,7 @@ sudo_putenv(char *str, bool dupcheck, bool overwrite)
if (env.envp[env.env_len] != NULL)
fatalx(_("sudo_putenv: corrupted envp, length mismatch"));
#endif
fatalx(NULL);
fatal(NULL);
}
debug_return_int(rval);
}