bridge: Forbid '/' in bridge names to prevent arbitrary directory access.
[openvswitch] / vswitchd / system-stats.c
index 9c5a25c5ef482096cd16755a9b8a6e84efa3e858..b8f8d7e33036e0956a90cfe5c4bc1f233078c7c1 100644 (file)
@@ -22,7 +22,6 @@
 #if HAVE_MNTENT_H
 #include <mntent.h>
 #endif
-#include <signal.h>
 #include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -414,7 +413,7 @@ get_process_stats(struct shash *stats)
         file_name = xasprintf("%s/%s", ovs_rundir(), de->d_name);
         pid = read_pidfile(file_name);
         free(file_name);
-        if (pid < 0 || kill(pid, 0)) {
+        if (pid < 0) {
             continue;
         }