Browse Source

lightningd: fix crash on listpeers.

Fixes: #1680
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 6 years ago
parent
commit
d84d358562
  1. 2
      lightningd/peer_control.c

2
lightningd/peer_control.c

@ -781,7 +781,7 @@ static void gossipd_getpeers_complete(struct subd *gossip, const u8 *msg,
}
/* Search gossip reply for this ID, to add extra info. */
for (size_t i = 0; i < tal_len(nodes); i++) {
for (size_t i = 0; i < tal_count(nodes); i++) {
if (pubkey_eq(&nodes[i]->nodeid, &p->id)) {
json_add_node_decoration(response, nodes[i]);
break;

Loading…
Cancel
Save