commit 619c04ec68893ac285460ad3154a7c144c4f91e6 parent 2fe7aad94305e29d2b6bd4d4870d315e348a5576 Author: Christian Grothoff <christian@grothoff.org> Date: Sat, 18 Jul 2020 17:52:13 +0200 -fix comparison, avoid NPE Diffstat:
| M | 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 @@ -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;