File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ PHP_FUNCTION(proc_terminate)
245
245
ZEND_PARSE_PARAMETERS_END ();
246
246
247
247
if ((proc = (struct php_process_handle * )zend_fetch_resource (Z_RES_P (zproc ), "process" , le_proc_open )) == NULL ) {
248
- RETURN_FALSE ;
248
+ return ;
249
249
}
250
250
251
251
#ifdef PHP_WIN32
@@ -276,7 +276,7 @@ PHP_FUNCTION(proc_close)
276
276
ZEND_PARSE_PARAMETERS_END ();
277
277
278
278
if ((proc = (struct php_process_handle * )zend_fetch_resource (Z_RES_P (zproc ), "process" , le_proc_open )) == NULL ) {
279
- RETURN_FALSE ;
279
+ return ;
280
280
}
281
281
282
282
FG (pclose_wait ) = 1 ;
@@ -306,7 +306,7 @@ PHP_FUNCTION(proc_get_status)
306
306
ZEND_PARSE_PARAMETERS_END ();
307
307
308
308
if ((proc = (struct php_process_handle * )zend_fetch_resource (Z_RES_P (zproc ), "process" , le_proc_open )) == NULL ) {
309
- RETURN_FALSE ;
309
+ return ;
310
310
}
311
311
312
312
array_init (return_value );
You can’t perform that action at this time.
0 commit comments