Hi Lucas, David, On Thu, Sep 15, 2011 at 7:21 AM, Lucas De Marchi <lucas.demarchi@xxxxxxxxxxxxxx> wrote: > From: David Stockwell <dstockwell@xxxxxxxxxxxxxxxxx> > > --- > audio/avrcp.c | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/audio/avrcp.c b/audio/avrcp.c > index 783ba02..f7f3924 100644 > --- a/audio/avrcp.c > +++ b/audio/avrcp.c > @@ -142,6 +142,7 @@ enum media_info_id { > MEDIA_INFO_N_TRACKS = 5, > MEDIA_INFO_GENRE = 6, > MEDIA_INFO_CURRENT_POSITION = 7, > + MEDIA_INFO_LAST > }; > > #if __BYTE_ORDER == __LITTLE_ENDIAN > @@ -890,7 +891,7 @@ static uint8_t avrcp_handle_get_element_attributes(struct media_player *mp, > * Return all available information, at least > * title must be returned. > */ > - for (i = 1; i <= MEDIA_INFO_CURRENT_POSITION; i++) { > + for (i = 1; i < MEDIA_INFO_LAST; i++) { > size = mp_get_media_attribute(mp, i, > &pdu->params[pos]); > > -- > 1.7.6.1 Ack. -- 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