projects
/
oweals
/
tinc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
45fca3c
)
Close the proper filedescriptor (if it exists).
author
Guus Sliepen
<guus@tinc-vpn.org>
Wed, 14 Feb 2007 09:32:16 +0000
(09:32 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Wed, 14 Feb 2007 09:32:16 +0000
(09:32 +0000)
lib/pidfile.c
patch
|
blob
|
history
diff --git
a/lib/pidfile.c
b/lib/pidfile.c
index 08d96dfe6c02303000bcb1545d96cca793a144c2..830d3f358d6a08c65404f193b89e1e9a6066b879 100644
(file)
--- a/
lib/pidfile.c
+++ b/
lib/pidfile.c
@@
-85,12
+85,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;
}