gnunet-svn
[Top][All Lists]
Advanced

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

[taler-merchant] branch master updated: fix memory leak


From: gnunet
Subject: [taler-merchant] branch master updated: fix memory leak
Date: Sat, 13 Feb 2021 19:21:13 +0100

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

grothoff pushed a commit to branch master
in repository merchant.

The following commit(s) were added to refs/heads/master by this push:
     new 2407145b fix memory leak
2407145b is described below

commit 2407145b0e0e676ffda3c415448666deae5ae8a3
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sat Feb 13 19:21:11 2021 +0100

    fix memory leak
---
 src/backend/taler-merchant-httpd_private-get-products-ID.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/backend/taler-merchant-httpd_private-get-products-ID.c 
b/src/backend/taler-merchant-httpd_private-get-products-ID.c
index 915b016c..0fc666eb 100644
--- a/src/backend/taler-merchant-httpd_private-get-products-ID.c
+++ b/src/backend/taler-merchant-httpd_private-get-products-ID.c
@@ -62,6 +62,7 @@ TMH_private_get_products_ID (const struct TMH_RequestHandler 
*rh,
   }
   {
     json_t *reply;
+    MHD_RESULT ret;
 
     reply = json_pack (
       "{s:s, s:s, s:o, s:o, s:I,"
@@ -95,9 +96,11 @@ TMH_private_get_products_ID (const struct TMH_RequestHandler 
*rh,
       json_object_set_new (reply,
                            "next_restock",
                            GNUNET_JSON_from_time_abs (pd.next_restock));
-    return TALER_MHD_reply_json (connection,
-                                 reply,
-                                 MHD_HTTP_OK);
+    ret = TALER_MHD_reply_json (connection,
+                                reply,
+                                MHD_HTTP_OK);
+    json_decref (reply);
+    return ret;
   }
 }
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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