Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lightningd/channel_control.c
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ static void handle_splice_abort(struct lightningd *ld,
struct bitcoin_outpoint *outpoint;
struct channel_inflight *inflight;
char *reason;
const u8 *error;
const u8 *error = NULL;
struct peer_fd *pfd;
int other_fd;

Expand Down
2 changes: 1 addition & 1 deletion lightningd/peer_control.c
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ static bool ignore_idle_channel(const struct lightningd *ld,
/* Talk to connectd about an active channel */
static void connect_activate_subd(struct lightningd *ld, struct channel *channel)
{
const u8 *error;
const u8 *error = NULL;
struct peer_fd *pfd;
int other_fd;

Expand Down
Loading