gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-exchange] 02/02: bank-lib: fix context


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] 02/02: bank-lib: fix context
Date: Sun, 12 May 2019 22:20:42 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository exchange.

commit 886895273509f4a4d33fca089ab5fbf9772446e7
Author: Florian Dold <address@hidden>
AuthorDate: Sun May 12 22:20:36 2019 +0200

    bank-lib: fix context
---
 src/bank-lib/bank_api_admin.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/bank-lib/bank_api_admin.c b/src/bank-lib/bank_api_admin.c
index d019a7e1..b04d3e9a 100644
--- a/src/bank-lib/bank_api_admin.c
+++ b/src/bank-lib/bank_api_admin.c
@@ -41,7 +41,7 @@ struct TALER_BANK_AdminAddIncomingHandle
   /**
    * POST context.
    */
-  struct TEAH_PostContext *post_ctx;
+  struct TEAH_PostContext post_ctx;
 
   /**
    * Handle for the request.
@@ -221,7 +221,7 @@ TALER_BANK_admin_add_incoming (struct GNUNET_CURL_Context 
*ctx,
   eh = curl_easy_init ();
 
   GNUNET_assert (GNUNET_OK ==
-                 TEAH_curl_easy_post (aai->post_ctx, eh, admin_obj));
+                 TEAH_curl_easy_post (&aai->post_ctx, eh, admin_obj));
 
   json_decref (admin_obj);
 
@@ -253,6 +253,7 @@ TALER_BANK_admin_add_incoming_cancel (struct 
TALER_BANK_AdminAddIncomingHandle *
     GNUNET_CURL_job_cancel (aai->job);
     aai->job = NULL;
   }
+  TEAH_curl_easy_post_finished (&aai->post_ctx);
   GNUNET_free (aai->request_url);
   GNUNET_free (aai);
 }

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]