Browse Source

peer_control: move link to the top of the structure.

memleak doesn't detect pointers to within an object, only pointers to their
exact address (it's simpler this way).  Moving the linked list to the
top of the structure means it can follow the chain.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 7 years ago
committed by Christian Decker
parent
commit
cec87ba08b
  1. 7
      lightningd/peer_control.h

7
lightningd/peer_control.h

@ -18,6 +18,10 @@
struct crypto_state;
struct peer {
/* Inside ld->peers. */
struct list_node list;
/* Master context */
struct lightningd *ld;
/* Database ID of the peer */
@ -41,9 +45,6 @@ struct peer {
/* Command which ordered us to open channel, if any. */
struct command *opening_cmd;
/* Inside ld->peers. */
struct list_node list;
/* Is there a single subdaemon responsible for us? */
struct subd *owner;

Loading…
Cancel
Save