From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Thu, 11 Sep 2014 09:37:52 -0700 From: Johan Hedberg To: Gowtham Anandha Babu Cc: linux-bluetooth@vger.kernel.org, d.kasatkin@samsung.com, bharat.panda@samsung.com, cpgs@samsung.com Subject: Re: [PATCH 1/7] obexd/client : Handle the MAP Extended Event Report 1.1 Message-ID: <20140911163752.GA27789@t440s> References: <1410441607-9687-1-git-send-email-gowtham.ab@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <1410441607-9687-1-git-send-email-gowtham.ab@samsung.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Hi, On Thu, Sep 11, 2014, Gowtham Anandha Babu wrote: > struct map_event { > @@ -41,6 +42,10 @@ struct map_event { > char *folder; > char *old_folder; > char *msg_type; > + char *datetime; > + char *subject; > + char *sender_name; > + char *priority; > }; > +static void parse_event_report_date_time(struct map_event *event, > + const char *value) > +{ > + event->datetime = g_strdup(value); > +} > + > +static void parse_event_report_subject(struct map_event *event, > + const char *value) > +{ > + event->subject = g_strdup(value); > +} > + > +static void parse_event_report_sender_name(struct map_event *event, > + const char *value) > +{ > + event->sender_name = g_strdup(value); > +} > + > +static void parse_event_report_priority(struct map_event *event, > + const char *value) > +{ > + event->priority = g_strdup(value); > +} Where are all these freed? Don't you need to update the map_event_free() function? If you're not yet doing so, please always test your code with "valgrind --leak-check=full". Johan