summaryrefslogtreecommitdiff
path: root/src/modules/wizard
diff options
context:
space:
mode:
authorCedric BAIL <cedric.bail@free.fr>2012-07-28 14:29:26 +0000
committerCedric BAIL <cedric.bail@free.fr>2012-07-28 14:29:26 +0000
commitf44867c7e13a5c99634deea28406f62edf73f75f (patch)
treeb7fe8ca3ab2406ded929d09d6c1fb777c6935259 /src/modules/wizard
parent14386604f473ffbd626677cb8e18ba06280e0b4b (diff)
downloadenlightenment-f44867c7e13a5c99634deea28406f62edf73f75f.tar.gz
e: don't forget fclose.
Patch suggested by rustyBSD <rustyBSD@gmx.fr>. NOTE: a better solution would be to use Eina_File and eina_file_map_lines. SVN revision: 74531
Diffstat (limited to 'src/modules/wizard')
-rw-r--r--src/modules/wizard/page_080.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/wizard/page_080.c b/src/modules/wizard/page_080.c
index 14382dcbf2..6de21e0327 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 */
}