From: cedric Date: Mon, 18 Oct 2010 13:49:06 +0000 (+0000) Subject: * ecore: remove now useless structure. X-Git-Tag: 2.0_alpha~194^2~486 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b5bce1ee240dee0bb7c3934c7390ed30cabfe17;p=framework%2Fuifw%2Fecore.git * ecore: remove now useless structure. Patch by Raphael Kubo da Costa git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@53570 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore_con/ecore_con_private.h b/src/lib/ecore_con/ecore_con_private.h index 6685209..58d5da1 100644 --- a/src/lib/ecore_con/ecore_con_private.h +++ b/src/lib/ecore_con/ecore_con_private.h @@ -164,7 +164,6 @@ struct _Ecore_Con_Url ECORE_MAGIC; CURL *curl_easy; struct curl_slist *headers; - struct curl_httppost *post; Eina_List *additional_headers; Eina_List *response_headers; char *url; diff --git a/src/lib/ecore_con/ecore_con_url.c b/src/lib/ecore_con/ecore_con_url.c index ff3a9c7..f97ff08 100644 --- a/src/lib/ecore_con/ecore_con_url.c +++ b/src/lib/ecore_con/ecore_con_url.c @@ -402,11 +402,6 @@ ecore_con_url_free(Ecore_Con_Url *url_con) url_con->fd_handler = NULL; } - if (url_con->post) - curl_formfree(url_con->post); - - url_con->post = NULL; - if (url_con->curl_easy) { // FIXME: For an unknown reason, progress continue to arrive after destruction