summaryrefslogtreecommitdiff
path: root/src/exchangedb/pg_get_pending_kyc_requirement_process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/exchangedb/pg_get_pending_kyc_requirement_process.c')
-rw-r--r--src/exchangedb/pg_get_pending_kyc_requirement_process.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/exchangedb/pg_get_pending_kyc_requirement_process.c b/src/exchangedb/pg_get_pending_kyc_requirement_process.c
index 2a5808ff3..b9acddad1 100644
--- a/src/exchangedb/pg_get_pending_kyc_requirement_process.c
+++ b/src/exchangedb/pg_get_pending_kyc_requirement_process.c
@@ -40,11 +40,14 @@ TEH_PG_get_pending_kyc_requirement_process (
GNUNET_PQ_query_param_end
};
struct GNUNET_PQ_ResultSpec rs[] = {
- GNUNET_PQ_result_spec_string ("redirect_url",
- redirect_url),
+ GNUNET_PQ_result_spec_allow_null (
+ GNUNET_PQ_result_spec_string ("redirect_url",
+ redirect_url),
+ NULL),
GNUNET_PQ_result_spec_end
};
+ *redirect_url = NULL;
PREPARE (pg,
"get_pending_kyc_requirement_process",
"SELECT"