From: Howell Tam <howell.tam@fluffyspider.com>

Subject: ecore_file_download.c patch

Leak fix. Free url_con.



SVN revision: 52944
This commit is contained in:
Howell Tam 2010-10-01 07:04:07 +00:00 committed by Carsten Haitzler
parent f394a88dca
commit fcbc86aec9
1 changed files with 1 additions and 0 deletions

View File

@ -212,6 +212,7 @@ _ecore_file_download_url_complete_cb(void *data __UNUSED__, int type __UNUSED__,
_job_list = eina_list_remove(_job_list, job);
fclose(job->file);
free(job->dst);
ecore_con_url_destroy(job->url_con);
free(job);
return ECORE_CALLBACK_DONE;