mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
runtests: Fix pid check in checkdied
Because the 'not' operator has a very low precedence and as a result the entire statement was erroneously negated and could never be true.
This commit is contained in:
parent
8fd190c04f
commit
c6ff538ebd
@ -397,7 +397,7 @@ sub init_serverpidfile_hash {
|
|||||||
sub checkdied {
|
sub checkdied {
|
||||||
use POSIX ":sys_wait_h";
|
use POSIX ":sys_wait_h";
|
||||||
my $pid = $_[0];
|
my $pid = $_[0];
|
||||||
if(not defined $pid || $pid <= 0) {
|
if((not defined $pid) || $pid <= 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
my $rc = waitpid($pid, &WNOHANG);
|
my $rc = waitpid($pid, &WNOHANG);
|
||||||
|
Loading…
Reference in New Issue
Block a user