Don't leak fd.

pull/1/head
Nicholas Marriott 2009-02-02 15:46:36 +00:00
parent dd4e160d71
commit 5a7b7aaa1c
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $Id: osdep-linux.c,v 1.2 2009-01-26 22:57:19 nicm Exp $ */
/* $Id: osdep-linux.c,v 1.3 2009-02-02 15:46:36 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@ -56,6 +56,7 @@ get_argv0(int fd, unused char *tty)
if (buf != NULL)
buf[len] = '\0';
fclose(f);
return (buf);
}