[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
texinfo update (Sat Mar 12 19:22:01 EST 2005)
From: |
Karl Berry |
Subject: |
texinfo update (Sat Mar 12 19:22:01 EST 2005) |
Date: |
Sat, 12 Mar 2005 19:22:09 -0500 |
Index: ChangeLog
===================================================================
RCS file: /cvsroot/texinfo/texinfo/ChangeLog,v
retrieving revision 1.475
retrieving revision 1.476
diff -c -r1.475 -r1.476
*** ChangeLog 9 Mar 2005 14:46:27 -0000 1.475
--- ChangeLog 12 Mar 2005 23:59:38 -0000 1.476
***************
*** 1,3 ****
--- 1,10 ----
+ 2005-03-12 Karl Berry <address@hidden>
+
+ * process_css_file: fclose the file when we're through with it,
+ to avoid fd leaks.
+ From: Matthias Kilian <address@hidden>,
+ 11 Mar 2005 19:42:27 +0100.
+
2005-03-08 Keith Marshall <address@hidden>
* makeinfo/tests/no-headers: ($nulldev): new variable.
Index: makeinfo/html.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/html.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -c -r1.28 -r1.29
*** makeinfo/html.c 6 Dec 2004 01:13:06 -0000 1.28
--- makeinfo/html.c 12 Mar 2005 23:59:39 -0000 1.29
***************
*** 1,7 ****
/* html.c -- html-related utilities.
! $Id: html.c,v 1.28 2004/12/06 01:13:06 karl Exp $
! Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software
Foundation, Inc.
This program is free software; you can redistribute it and/or modify
--- 1,7 ----
/* html.c -- html-related utilities.
! $Id: html.c,v 1.29 2005/03/12 23:59:39 karl Exp $
! 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,172 ****
--- 167,175 ----
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);
P ChangeLog
P makeinfo/html.c
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- texinfo update (Sat Mar 12 19:22:01 EST 2005),
Karl Berry <=