mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -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 {
|
||||
use POSIX ":sys_wait_h";
|
||||
my $pid = $_[0];
|
||||
if(not defined $pid || $pid <= 0) {
|
||||
if((not defined $pid) || $pid <= 0) {
|
||||
return 0;
|
||||
}
|
||||
my $rc = waitpid($pid, &WNOHANG);
|
||||
|
Loading…
Reference in New Issue
Block a user