Browse Source

df: free psbt on negotiation failed

ppa
niftynei 4 years ago
committed by Christian Decker
parent
commit
5387f6736c
  1. 3
      openingd/dualopend.c

3
openingd/dualopend.c

@ -277,6 +277,8 @@ static void negotiation_aborted(struct state *state, const char *why)
memset(&state->channel_id, 0, sizeof(state->channel_id)); memset(&state->channel_id, 0, sizeof(state->channel_id));
state->channel = tal_free(state->channel); state->channel = tal_free(state->channel);
state->changeset = tal_free(state->changeset); state->changeset = tal_free(state->changeset);
if (state->psbt)
tal_free(state->psbt);
for (size_t i = 0; i < NUM_TX_MSGS; i++) for (size_t i = 0; i < NUM_TX_MSGS; i++)
state->tx_msg_count[i] = 0; state->tx_msg_count[i] = 0;
@ -2710,6 +2712,7 @@ int main(int argc, char *argv[])
/*~ This makes status_failed, status_debug etc work synchronously by /*~ This makes status_failed, status_debug etc work synchronously by
* writing to REQ_FD */ * writing to REQ_FD */
status_setup_sync(REQ_FD); status_setup_sync(REQ_FD);
state->psbt = NULL;
/*~ The very first thing we read from lightningd is our init msg */ /*~ The very first thing we read from lightningd is our init msg */
msg = wire_sync_read(tmpctx, REQ_FD); msg = wire_sync_read(tmpctx, REQ_FD);

Loading…
Cancel
Save