All of lore.kernel.org
 help / color / mirror / Atom feed
From: Syam Sidhardhan <s.syam@samsung.com>
To: Luiz Augusto von Dentz <luiz.dentz@gmail.com>,
	linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH obexd] client: fix parsing of apparam on pbap driver
Date: Mon, 16 Jan 2012 20:22:48 +0530	[thread overview]
Message-ID: <895415989D644B5AB712230EEFE0904B@sisodomain.com> (raw)
In-Reply-To: 1326534835-6995-1-git-send-email-luiz.dentz@gmail.com

Hi Luiz,

----- Original Message ----- 
From: "Luiz Augusto von Dentz" <luiz.dentz@gmail.com>
To: <linux-bluetooth@vger.kernel.org>
Sent: Saturday, January 14, 2012 3:23 PM
Subject: [PATCH obexd] client: fix parsing of apparam on pbap driver


> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>
> Header pointer need to be updated otherwise the code will be stuck in the
> first parameter even though the size is updated.
> ---
> client/pbap.c |    8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/client/pbap.c b/client/pbap.c
> index 9e9eb05..1da0ae5 100644
> --- a/client/pbap.c
> +++ b/client/pbap.c
> @@ -364,7 +364,7 @@ static void read_return_apparam(struct obc_session 
> *session,
> {
>  struct obc_transfer *transfer = obc_session_get_transfer(session);
>  struct obc_transfer_params params;
> - unsigned char *buf;
> + struct apparam_hdr *hdr;
>  size_t size = 0;
>
>  *phone_book_size = 0;
> @@ -376,9 +376,9 @@ static void read_return_apparam(struct obc_session 
> *session,
>  if (params.size < APPARAM_HDR_SIZE)
>  return;
>
> - while (size > APPARAM_HDR_SIZE) {
> - struct apparam_hdr *hdr = (struct apparam_hdr *) params.data;
> + hdr = (struct apparam_hdr *) params.data;
>
> + while (size > APPARAM_HDR_SIZE) {
>  if (hdr->len > size - APPARAM_HDR_SIZE) {
>  error("Unexpected PBAP pullphonebook app"
>  " length, tag %d, len %d",
> @@ -404,7 +404,7 @@ static void read_return_apparam(struct obc_session 
> *session,
>  hdr->tag, hdr->len);
>  }
>
> - buf += APPARAM_HDR_SIZE + hdr->len;
> + hdr += APPARAM_HDR_SIZE + hdr->len;
>  size -= APPARAM_HDR_SIZE + hdr->len;
>  }
> }

Here one more changes is required. Since we are not updating the size
while (size > APPARAM_HDR_SIZE) statement will always evaluate as false
and it will never enter into the loop. So we need to have a statement
size = params.size; before checking for the while() condition. Correct me if 
I 'm wrong here.

Thanks,
Syam

> -- 
> 1.7.7.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" 
> in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html 


  reply	other threads:[~2012-01-16 14:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-14  9:53 [PATCH obexd] client: fix parsing of apparam on pbap driver Luiz Augusto von Dentz
2012-01-16 14:52 ` Syam Sidhardhan [this message]
2012-01-16 15:02   ` Luiz Augusto von Dentz
  -- strict thread matches above, loose matches on Subject: below --
2012-01-17 10:15 Luiz Augusto von Dentz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=895415989D644B5AB712230EEFE0904B@sisodomain.com \
    --to=s.syam@samsung.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=luiz.dentz@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.