X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Fpidfile.c;h=425b3043a28fdc054f26e03405aad19752eebc0f;hp=08d96dfe6c02303000bcb1545d96cca793a144c2;hb=d7636352ce359e807b392a6e5ac0a6aeff4a63d2;hpb=45fca3c723302868de3225e7509d2292008948f7 diff --git a/lib/pidfile.c b/lib/pidfile.c index 08d96dfe..425b3043 100644 --- a/lib/pidfile.c +++ b/lib/pidfile.c @@ -14,9 +14,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* left unaltered for tinc -- Ivo Timmermans */ @@ -41,7 +41,8 @@ pid_t read_pid (char *pidfile) if (!(f=fopen(pidfile,"r"))) return 0; - fscanf(f,"%ld", &pid); + if(fscanf(f,"%20ld", &pid) != 1) + pid = 0; fclose(f); return pid; } @@ -85,12 +86,11 @@ pid_t write_pid (char *pidfile) pid_t pid; if ((fd = open(pidfile, O_RDWR|O_CREAT, 0644)) == -1) { - close(fd); return 0; } if ((f = fdopen(fd, "r+")) == NULL) { - fclose(f); + close(fd); return 0; }