From 16e68ac53a436bbfe205cbccece7cc6c56f8c4d8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A1t=C3=A9=20Kocsis?= Date: Fri, 15 Nov 2019 20:50:33 +0100 Subject: [PATCH] Return false when "Unable to fork" --- ext/standard/exec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/standard/exec.c b/ext/standard/exec.c index ffa4d444dd..21ebba891d 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -197,6 +197,7 @@ done: return pclose_return; err: pclose_return = -1; + RETVAL_FALSE; goto done; } /* }}} */ -- 2.50.1