Merge pull request #189 from colincameron/master

Close file pointer after adding to archive
This commit is contained in:
Joshua Hudson 2015-10-23 15:07:21 -07:00
commit 489bd49cb4

View File

@ -628,6 +628,8 @@
zipCloseFileInZip(_zip);
free(buffer);
fclose(input);
return YES;
}