Hi, On Thu, Jan 30, 2014 at 3:03 PM, Luiz Augusto von Dentz <luiz.dentz@xxxxxxxxx> wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> > > When the End index is not set in ListItems the code automatically pick > the number of items as end index but the start index start with 0 so > the correct is to use number of items - 1. > --- > profiles/audio/player.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/profiles/audio/player.c b/profiles/audio/player.c > index e6d24eb..2bd2d6e 100644 > --- a/profiles/audio/player.c > +++ b/profiles/audio/player.c > @@ -808,7 +808,8 @@ static int parse_filters(struct media_player *player, DBusMessageIter *iter, > int ctype; > > *start = 0; > - *end = folder->number_of_items ? folder->number_of_items : UINT32_MAX; > + *end = folder->number_of_items ? folder->number_of_items - 1 : > + UINT32_MAX; > > ctype = dbus_message_iter_get_arg_type(iter); > if (ctype != DBUS_TYPE_ARRAY) > -- > 1.8.4.2 Pushed after fixing patch 4/4. -- Luiz Augusto von Dentz -- 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