summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/texinfo
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2010-06-06 12:31:10 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2010-06-06 12:31:10 +0000
commita6871c0ebaeb39742308454846222e8da10ab6fc (patch)
tree6910f61026bcefd169e0add118432bbec721baab /gnu/usr.bin/texinfo
parent1c0b3e3860f4c36feca423c656d9276864e31c16 (diff)
plug fd leak when using --html --css-include. fixes pr/6387.
millert@ ok.
Diffstat (limited to 'gnu/usr.bin/texinfo')
-rw-r--r--gnu/usr.bin/texinfo/makeinfo/html.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/usr.bin/texinfo/makeinfo/html.c b/gnu/usr.bin/texinfo/makeinfo/html.c
index 36d29bd1d63..c64bb3949b1 100644
--- a/gnu/usr.bin/texinfo/makeinfo/html.c
+++ b/gnu/usr.bin/texinfo/makeinfo/html.c
@@ -1,7 +1,7 @@
/* html.c -- html-related utilities.
- $Id: html.c,v 1.2 2006/07/17 22:29:29 espie Exp $
+ $Id: html.c,v 1.3 2010/06/06 12:31:09 fgsch Exp $
- Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software
+ Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software
Foundation, Inc.
This program is free software; you can redistribute it and/or modify
@@ -167,6 +167,9 @@ process_css_file (char *filename)
lastchar = c;
}
+ fclose (f); /* Even closing stdin should be ok, can't read it more
+ than once? */
+
/* Reached the end of the file. We should not be still in a comment. */
if (state == comment_state)
warning (_("%s:%d: --css-file ended in comment"), filename, lineno);