1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-07-29 22:41:11 +03:00

avoid passing null to exit, see also #921

This commit is contained in:
David Goodwin
2025-05-17 19:51:37 +01:00
parent 798e8b269c
commit ad68f20f82

View File

@ -411,6 +411,6 @@ try {
$dispatcher->stderr("Execution Exception: " . $e->getMessage());
$retval = 1;
}
exit($retval);
exit($retval ?? 0);
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */