diff options
author | djm <djm> | 2001-10-22 06:49:22 +0000 |
---|---|---|
committer | djm <djm> | 2001-10-22 06:49:22 +0000 |
commit | 9bd9a818dd2138560c841eed482d301d664d07f2 (patch) | |
tree | 15642dc28fb7943ad042d714b9d24deddc511ec9 /loginrec.c | |
parent | 29c3df4b31a9afff4304c3bacc50dd1f4b2e2757 (diff) | |
download | openssh-9bd9a818dd2138560c841eed482d301d664d07f2.tar.gz |
- (djm) Fix fd leak in loginrec.c (ro fd to lastlog was left open).
Report from Michal Zalewski <lcamtuf@coredump.cx>
Diffstat (limited to 'loginrec.c')
-rw-r--r-- | loginrec.c | 25 |
1 files changed, 14 insertions, 11 deletions
@@ -163,7 +163,7 @@ #include "log.h" #include "atomicio.h" -RCSID("$Id: loginrec.c,v 1.35 2001/10/02 00:29:00 stevesk Exp $"); +RCSID("$Id: loginrec.c,v 1.36 2001/10/22 06:49:23 djm Exp $"); #ifdef HAVE_UTIL_H # include <util.h> @@ -1487,17 +1487,20 @@ lastlog_get_entry(struct logininfo *li) struct lastlog last; int fd; - if (lastlog_openseek(li, &fd, O_RDONLY)) { - if (atomicio(read, fd, &last, sizeof(last)) != sizeof(last)) { - log("lastlog_get_entry: Error reading from %s: %s", - LASTLOG_FILE, strerror(errno)); - return 0; - } else { - lastlog_populate_entry(li, &last); - return 1; - } - } else { + if (!lastlog_openseek(li, &fd, O_RDONLY)) + return 0; + + if (atomicio(read, fd, &last, sizeof(last)) != sizeof(last)) { + close(fd); + log("lastlog_get_entry: Error reading from %s: %s", + LASTLOG_FILE, strerror(errno)); return 0; } + + close(fd); + + lastlog_populate_entry(li, &last); + + return 1; } #endif /* USE_LASTLOG */ |