gnunet-svn
[Top][All Lists]
Advanced

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

[taler-merchant] branch master updated: -fix comparison, avoid NPE


From: gnunet
Subject: [taler-merchant] branch master updated: -fix comparison, avoid NPE
Date: Sat, 18 Jul 2020 17:52:16 +0200

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 619c04e  -fix comparison, avoid NPE
619c04e is described below

commit 619c04ec68893ac285460ad3154a7c144c4f91e6
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sat Jul 18 17:52:13 2020 +0200

    -fix comparison, avoid NPE
---
 src/backend/taler-merchant-httpd_private-post-orders.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c 
b/src/backend/taler-merchant-httpd_private-post-orders.c
index 0e06f7f..64dcce4 100644
--- a/src/backend/taler-merchant-httpd_private-post-orders.c
+++ b/src/backend/taler-merchant-httpd_private-post-orders.c
@@ -610,7 +610,7 @@ patch_order (struct MHD_Connection *connection,
     refdel_s = MHD_lookup_connection_value (connection,
                                             MHD_GET_ARGUMENT_KIND,
                                             "refund_delay");
-    if (NULL == refdel_s)
+    if (NULL != refdel_s)
     {
       struct GNUNET_TIME_Relative r;
 

-- 
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]