[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] branch master updated: allow jnew_rules to be NULL
From: |
gnunet |
Subject: |
[taler-exchange] branch master updated: allow jnew_rules to be NULL |
Date: |
Fri, 06 Dec 2024 11:45:06 +0100 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new d200e91ff allow jnew_rules to be NULL
d200e91ff is described below
commit d200e91fff1b4c70d6f23c5e1734fb2cf22d8923
Author: Florian Dold <florian@dold.me>
AuthorDate: Fri Dec 6 11:45:00 2024 +0100
allow jnew_rules to be NULL
---
src/exchangedb/pg_lookup_rules_by_access_token.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/exchangedb/pg_lookup_rules_by_access_token.c
b/src/exchangedb/pg_lookup_rules_by_access_token.c
index 59899e256..23f3c44e7 100644
--- a/src/exchangedb/pg_lookup_rules_by_access_token.c
+++ b/src/exchangedb/pg_lookup_rules_by_access_token.c
@@ -41,9 +41,11 @@ TEH_PG_lookup_rules_by_access_token (
GNUNET_PQ_query_param_end
};
struct GNUNET_PQ_ResultSpec rs[] = {
- TALER_PQ_result_spec_json (
- "jnew_rules",
- jnew_rules),
+ GNUNET_PQ_result_spec_allow_null (
+ TALER_PQ_result_spec_json (
+ "jnew_rules",
+ jnew_rules),
+ NULL),
GNUNET_PQ_result_spec_uint64 (
"row_id",
rowid),
--
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: allow jnew_rules to be NULL,
gnunet <=