aboutsummaryrefslogtreecommitdiff
path: root/src/jpilot.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-11-27 07:06:18 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2013-11-27 07:06:18 +0000
commit6d46ef5c157b87f6a44e009b4fc7f60078ecce59 (patch)
tree29c488db9daf4fb7d26d8e56c69e6f5cc6b9b246 /src/jpilot.c
parentf6ae755743b4ca15509098a5374e93f7450770e4 (diff)
fixed fp and memory leaks.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3300 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/jpilot.c')
-rw-r--r--src/jpilot.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/jpilot.c b/src/jpilot.c
index e0161cc1..ca8e391b 100644
--- a/src/jpilot.c
+++ b/src/jpilot.c
@@ -849,6 +849,7 @@ static gint jpilot_read_db_files( JPilotFile *pilotFile, GList **records ) {
return MGU_ERROR_READ;
}
if (feof(in)) {
+ fclose(in);
return MGU_EOF;
}
}
@@ -866,6 +867,8 @@ static gint jpilot_read_db_files( JPilotFile *pilotFile, GList **records ) {
break;
}
if (feof(in)) {
+ free_mem_rec_header(&mem_rh);
+ fclose(in);
return MGU_EOF;
}
}