From 98cfbae98e852086ccc775336552d33cd98afb35 Mon Sep 17 00:00:00 2001 From: cedric Date: Mon, 18 Oct 2010 13:49:06 +0000 Subject: [PATCH] * ecore: remove now useless structure. Patch by Raphael Kubo da Costa git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@53570 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/ecore_con/ecore_con_private.h | 1 - src/lib/ecore_con/ecore_con_url.c | 5 ----- 2 files changed, 6 deletions(-) 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 -- 2.7.4