From f44867c7e13a5c99634deea28406f62edf73f75f Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Sat, 28 Jul 2012 14:29:26 +0000 Subject: [PATCH] e: don't forget fclose. Patch suggested by rustyBSD . NOTE: a better solution would be to use Eina_File and eina_file_map_lines. SVN revision: 74531 --- src/modules/wizard/page_080.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/wizard/page_080.c b/src/modules/wizard/page_080.c index 14382dcbf..6de21e032 100644 --- a/src/modules/wizard/page_080.c +++ b/src/modules/wizard/page_080.c @@ -58,6 +58,7 @@ wizard_page_show(E_Wizard_Page *pg __UNUSED__) } fclose(f); } + fclose(fin); return 0; /* 1 == show ui, and wait for user, 0 == just continue */ }