[452] in BarnOwl Developers
[D-O-H] r581 - trunk/owl
daemon@ATHENA.MIT.EDU (asedeno@MIT.EDU)
Thu Oct 29 18:06:19 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
To: dirty-owl-hackers@mit.edu
From: asedeno@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Thu, 1 Feb 2007 16:23:02 -0500 (EST)
Author: asedeno
Date: 2007-02-01 16:23:01 -0500 (Thu, 01 Feb 2007)
New Revision: 581
Modified:
trunk/owl/zephyr.c
Log:
Fix a bug that was leaking file handles.
Modified: trunk/owl/zephyr.c
===================================================================
--- trunk/owl/zephyr.c 2007-01-31 04:06:13 UTC (rev 580)
+++ trunk/owl/zephyr.c 2007-02-01 21:23:01 UTC (rev 581)
@@ -633,6 +633,7 @@
if (!strcasecmp(buff, line)) {
owl_function_error("Subscription already present in %s", subsfile);
owl_free(line);
+ fclose(file);
return;
}
}