Return-Path: From: Gowtham Anandha Babu To: 'Luiz Augusto von Dentz' Cc: linux-bluetooth@vger.kernel.org, 'Dmitry Kasatkin' , 'Bharat Panda' , cpgs@samsung.com References: <1410785956-6887-1-git-send-email-gowtham.ab@samsung.com> In-reply-to: Subject: RE: [PATCH] obexd/client/map: Check msg value is valid Date: Tue, 16 Sep 2014 10:43:08 +0530 Message-id: <000001cfd16c$e8694540$b93bcfc0$@samsung.com> MIME-version: 1.0 Content-type: text/plain; charset=UTF-8 Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Hi Luiz, > -----Original Message----- > From: Luiz Augusto von Dentz [mailto:luiz.dentz@gmail.com] > Sent: Monday, September 15, 2014 6:34 PM > To: Gowtham Anandha Babu > Cc: linux-bluetooth@vger.kernel.org; Dmitry Kasatkin; Bharat Panda; > cpgs@samsung.com > Subject: Re: [PATCH] obexd/client/map: Check msg value is valid > > Hi, > > On Mon, Sep 15, 2014 at 3:59 PM, Gowtham Anandha Babu > wrote: > > Checks for the NULL msg-value, before passing it to the callback. > > --- > > obexd/client/map.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/obexd/client/map.c b/obexd/client/map.c index > > 520e492..fb8ebd8 100644 > > --- a/obexd/client/map.c > > +++ b/obexd/client/map.c > > @@ -1132,7 +1132,8 @@ static void msg_element(GMarkupParseContext > > *ctxt, const char *element, > > > > for (parser = msg_parsers; parser && parser->name; parser++) { > > if (strcasecmp(key, parser->name) == 0) { > > - parser->func(msg, values[i]); > > + if(values[i]) > > + parser->func(msg, values[i]); > > break; > > } > > } > > -- > > 1.9.1 > > Ive just pushed a similar patch, but thanks anyway. > > > -- > Luiz Augusto von Dentz Sorry If I am wrong, This patch is under obexd/client/map. The patch which you pushed recently is under obexd/client/mns. Regards, Gowtham