diff src/log.c @ 13468:e4aa2648ca28

[gaim-migrate @ 15843] A stupid mistake... I didn't fclose() the index file when everything worked. Resolves CID 95. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Wed, 08 Mar 2006 21:37:43 +0000
parents 0d223f4ee868
children 0f3036e073b6
line wrap: on
line diff
--- a/src/log.c	Wed Mar 08 21:31:10 2006 +0000
+++ b/src/log.c	Wed Mar 08 21:37:43 2006 +0000
@@ -1371,6 +1371,7 @@
 						list = g_list_prepend(list, log);
 					}
 				}
+				fclose(index);
 
 				return list;
 			}