commit | ff7661d9de75d0d92d76fc276b285f4138edf8c8 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Wed Jun 05 07:11:32 2002 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Wed Jun 05 07:11:32 2002 +0000 |
tree | f8fea7d89d2893a3ed52ee61b0d348834aabeb75 | |
parent | 1fca558799350fb6caff97f55aa6d1237b08fccb [diff] [blame] |
plug fd leak noticed by Russ Dill -Erik
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index 29e3d86..6b09043 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c
@@ -113,6 +113,7 @@ sprintf(buf, "/proc/%d/cmdline", pid); fp = fopen(buf, "r"); if (fp && fgets (buf, sizeof (buf), fp) ) { + fclose(fp); if (strncmp (buf, exec, strlen(exec)) == 0) return 1; }