bugfix: initialize pid (as read from pidfile) to zero
[tinc] / lib / pidfile.c
index 830d3f3..426cbf3 100644 (file)
@@ -37,7 +37,7 @@
 pid_t read_pid (char *pidfile)
 {
   FILE *f;
-  long pid;
+  long pid = 0;
 
   if (!(f=fopen(pidfile,"r")))
     return 0;