[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] branch master updated: tolerate missing -c
From: |
gnunet |
Subject: |
[taler-exchange] branch master updated: tolerate missing -c |
Date: |
Thu, 26 Dec 2024 16:56:00 +0100 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new d2c3fad5f tolerate missing -c
d2c3fad5f is described below
commit d2c3fad5fe10cecdc704176b3ccde772d30a7ed2
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Thu Dec 26 16:55:53 2024 +0100
tolerate missing -c
---
src/kyclogic/kyclogic_api.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/kyclogic/kyclogic_api.c b/src/kyclogic/kyclogic_api.c
index 06721311f..4e9c26f91 100644
--- a/src/kyclogic/kyclogic_api.c
+++ b/src/kyclogic/kyclogic_api.c
@@ -2802,7 +2802,8 @@ TALER_KYCLOGIC_kyc_init (
};
json_t *jkyc_rules;
- cfg_filename = GNUNET_strdup (cfg_fn);
+ if (NULL != cfg_fn)
+ cfg_filename = GNUNET_strdup (cfg_fn);
GNUNET_assert (GNUNET_OK ==
TALER_config_get_currency (cfg,
"exchange",
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-exchange] branch master updated: tolerate missing -c,
gnunet <=