Displaying 1 result from an estimated 1 matches for "f443cb7".
Did you mean:
f443c87b
2011 Aug 27
1
[PATCH 1/3] Fix file descriptor leak
Credit goes to "cppcheck"
Signed-off-by: Thomas Jarosch <thomas.jarosch at intra2net.com>
---
common/common.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/common/common.c b/common/common.c
index f443cb7..e8004d7 100644
--- a/common/common.c
+++ b/common/common.c
@@ -244,6 +244,7 @@ int sendsignalfn(const char *pidfn, int sig)
if (fgets(buf, sizeof(buf), pidf) == NULL) {
upslogx(LOG_NOTICE, "Failed to read pid from %s", pidfn);
+ fclose(pidf);
return -1;
}
@@ -251,6 +252,7...