aboutsummaryrefslogtreecommitdiff
path: root/src/lib/exchange_api_lookup_aml_decision.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-05-10 01:07:20 +0200
committerChristian Grothoff <christian@grothoff.org>2023-05-10 01:07:20 +0200
commit09f09a21045ed6407fd23a9edb23c6da9299604c (patch)
treec152701c70d0dd48091e4e53af28deeee98ef310 /src/lib/exchange_api_lookup_aml_decision.c
parentc014acf3c4ccf03109b0141d6b68d4f464464e19 (diff)
downloadexchange-09f09a21045ed6407fd23a9edb23c6da9299604c.tar.xz
fix more VLAs
Diffstat (limited to 'src/lib/exchange_api_lookup_aml_decision.c')
-rw-r--r--src/lib/exchange_api_lookup_aml_decision.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/exchange_api_lookup_aml_decision.c b/src/lib/exchange_api_lookup_aml_decision.c
index fc1a8a8e4..39d53c51f 100644
--- a/src/lib/exchange_api_lookup_aml_decision.c
+++ b/src/lib/exchange_api_lookup_aml_decision.c
@@ -196,7 +196,7 @@ parse_decision_ok (struct TALER_EXCHANGE_LookupAmlDecision *lh,
struct TALER_EXCHANGE_AmlDecisionDetail aml_history_ar[
GNUNET_NZL (lr.details.ok.aml_history_length)];
struct TALER_EXCHANGE_KycHistoryDetail kyc_attributes_ar[
- lr.details.ok.kyc_attributes_length];
+ GNUNET_NZL (lr.details.ok.kyc_attributes_length)];
enum GNUNET_GenericReturnValue ret = GNUNET_SYSERR;
lr.details.ok.aml_history = aml_history_ar;