diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/librc/librc-daemon.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/librc/librc-daemon.c b/src/librc/librc-daemon.c index 916cc142..a40150a6 100644 --- a/src/librc/librc-daemon.c +++ b/src/librc/librc-daemon.c @@ -155,7 +155,7 @@ rc_find_pids(const char *exec, const char *const *argv, uid_t uid, pid_t pid)  			if (rc <= 0)  				proc_ns[0] = '\0';  		} -		if (strcmp(my_ns, proc_ns)) +		if (strlen(my_ns) && strlen (proc_ns) && strcmp(my_ns, proc_ns))  			continue;  		if (uid) {  			snprintf(buffer, sizeof(buffer), "/proc/%d", p); | 
