You've already forked postfixadmin
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:
@ -411,6 +411,6 @@ try {
|
|||||||
$dispatcher->stderr("Execution Exception: " . $e->getMessage());
|
$dispatcher->stderr("Execution Exception: " . $e->getMessage());
|
||||||
$retval = 1;
|
$retval = 1;
|
||||||
}
|
}
|
||||||
exit($retval);
|
exit($retval ?? 0);
|
||||||
|
|
||||||
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
|
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
|
||||||
|
Reference in New Issue
Block a user