Hi Andrei, On Friday 19 of December 2014 14:13:01 Andrei Emeltchenko wrote: > From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> > > Allocated irk memory was never assigned. > --- > src/shared/gap.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/shared/gap.c b/src/shared/gap.c > index 19059e8..3536c1c 100644 > --- a/src/shared/gap.c > +++ b/src/shared/gap.c > @@ -276,5 +276,5 @@ bool bt_gap_add_peer_irk(struct bt_gap *gap, uint8_t addr_type, > memcpy(irk->addr, addr, 6); > memcpy(irk->key, key, 16); > > - return true; > + return queue_push_tail(gap->irk_list, irk); > } For sanity this should free irk if push failed. -- Best regards, Szymon Janc -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html