Browse Source

take the size of 'shared_secret' itself rather than its address

travis-debug
Yash Bhutwala 5 years ago
committed by neil saitug
parent
commit
c25ce826ab
  1. 2
      lightningd/peer_htlcs.c

2
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*

Loading…
Cancel
Save