lightningd: fix crash on listpeers.

Fixes: #1680
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2018-07-20 12:14:44 +09:30
parent f850849486
commit d84d358562

View File

@ -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;