From c25ce826abc2a362eebb055c199e2bd693b5a13c Mon Sep 17 00:00:00 2001 From: Yash Bhutwala Date: Sun, 6 Oct 2019 18:02:24 -0400 Subject: [PATCH] take the size of 'shared_secret' itself rather than its address --- lightningd/peer_htlcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/peer_htlcs.c b/lightningd/peer_htlcs.c index e5bb92fd4..8cbfea21e 100644 --- a/lightningd/peer_htlcs.c +++ b/lightningd/peer_htlcs.c @@ -1392,7 +1392,7 @@ static bool channel_added_their_htlc(struct channel *channel, /* FIXME: Our wire generator can't handle optional elems in arrays, * so we translate all-zero-shared-secret to NULL. */ - if (memeqzero(shared_secret, sizeof(&shared_secret))) + if (memeqzero(shared_secret, sizeof(shared_secret))) shared_secret = NULL; /* This stays around even if we fail it immediately: it *is*