summaryrefslogtreecommitdiff
path: root/src/lib/merchant_api_post_order_claim.c
diff options
context:
space:
mode:
authorJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2020-07-29 18:23:51 -0400
committerJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2020-07-29 18:23:51 -0400
commit26085c8712c509d1384d1de99fec1bc9d3d15386 (patch)
treefb37abf5e692ae0f32889ca03133e3ca10682f2b /src/lib/merchant_api_post_order_claim.c
parent91c676ddc756cdebd374a9c4fe3e40afba643a00 (diff)
downloadmerchant-26085c8712c509d1384d1de99fec1bc9d3d15386.tar.gz
merchant-26085c8712c509d1384d1de99fec1bc9d3d15386.tar.bz2
merchant-26085c8712c509d1384d1de99fec1bc9d3d15386.zip
remove allocations and pointers from claim token client/test code
Diffstat (limited to 'src/lib/merchant_api_post_order_claim.c')
-rw-r--r--src/lib/merchant_api_post_order_claim.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/merchant_api_post_order_claim.c b/src/lib/merchant_api_post_order_claim.c
index 5ec2e243..58e2f4bf 100644
--- a/src/lib/merchant_api_post_order_claim.c
+++ b/src/lib/merchant_api_post_order_claim.c
@@ -185,7 +185,7 @@ TALER_MERCHANT_order_claim (struct GNUNET_CURL_Context *ctx,
const char *backend_url,
const char *order_id,
const struct GNUNET_CRYPTO_EddsaPublicKey *nonce,
- const struct TALER_ClaimTokenP *claim_token,
+ const struct TALER_ClaimTokenP claim_token,
TALER_MERCHANT_OrderClaimCallback cb,
void *cb_cls)
{
@@ -200,12 +200,12 @@ TALER_MERCHANT_order_claim (struct GNUNET_CURL_Context *ctx,
GNUNET_break (0);
return NULL;
}
- if (NULL != claim_token)
+ if (0 != GNUNET_is_zero (&claim_token))
{
GNUNET_assert (0 ==
json_object_set_new (req_obj,
"token",
- GNUNET_JSON_from_data_auto (claim_token)));
+ GNUNET_JSON_from_data_auto (&claim_token)));
}
och = GNUNET_new (struct TALER_MERCHANT_OrderClaimHandle);
och->ctx = ctx;