Fix a signed error.
This commit is contained in:
parent
27f97f2106
commit
d904acf448
@ -102,7 +102,7 @@ static bool pid_is_exec (pid_t pid, const char *const *argv)
|
|||||||
return (false);
|
return (false);
|
||||||
argv++;
|
argv++;
|
||||||
p += strlen (p) + 1;
|
p += strlen (p) + 1;
|
||||||
if (p - buffer > (unsigned) sizeof (buffer))
|
if ((unsigned) (p - buffer) > sizeof (buffer))
|
||||||
return (false);
|
return (false);
|
||||||
}
|
}
|
||||||
return (true);
|
return (true);
|
||||||
|
Loading…
Reference in New Issue
Block a user