From: Bartosz Szatkowski <bulislaw@linux.com>
To: linux-bluetooth@vger.kernel.org
Cc: Bartosz Szatkowski <bulislaw@linux.com>
Subject: [PATCH obexd 2/8] MAP Tracker: Fix memory issue in folder listing
Date: Fri, 2 Sep 2011 10:57:54 +0200 [thread overview]
Message-ID: <1314953880-4663-2-git-send-email-bulislaw@linux.com> (raw)
In-Reply-To: <1314953880-4663-1-git-send-email-bulislaw@linux.com>
---
plugins/messages-tracker.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/plugins/messages-tracker.c b/plugins/messages-tracker.c
index eebfca3..218a016 100644
--- a/plugins/messages-tracker.c
+++ b/plugins/messages-tracker.c
@@ -40,7 +40,7 @@ struct message_folder {
struct session {
char *cwd;
struct message_folder *folder;
- const char *name;
+ char *name;
uint16_t max;
uint16_t offset;
void *user_data;
@@ -279,6 +279,7 @@ static gboolean async_get_folder_listing(void *s) {
session->user_data);
g_free(path);
+ g_free(session->name);
return FALSE;
}
@@ -289,7 +290,7 @@ int messages_get_folder_listing(void *s, const char *name,
void *user_data)
{
struct session *session = s;
- session->name = name;
+ session->name = g_strdup(name);
session->max = max;
session->offset = offset;
session->folder_list_cb = callback;
--
1.7.4.1
next prev parent reply other threads:[~2011-09-02 8:57 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-02 8:57 [PATCH obexd 1/8] MAP Tracker: Fix folder and path handling Bartosz Szatkowski
2011-09-02 8:57 ` Bartosz Szatkowski [this message]
2011-09-02 8:57 ` [PATCH obexd 3/8] MAP Tracker: Add support for DBus connection Bartosz Szatkowski
2011-09-06 13:44 ` Johan Hedberg
2011-09-02 8:57 ` [PATCH obexd 4/8] MAP Tracker Add basic support for messages listing Bartosz Szatkowski
2011-09-02 8:57 ` [PATCH obexd 5/8] MAP Tracker Add filter support in " Bartosz Szatkowski
2011-09-02 8:57 ` [PATCH obexd 6/8] MAP Tracker: Add support for pulling messages Bartosz Szatkowski
2011-09-02 13:36 ` [PATCH " Bartosz Szatkowski
2011-09-02 8:57 ` [PATCH obexd 7/8] MAP Tracker: Add abort support in folder listing Bartosz Szatkowski
2011-09-02 8:58 ` [PATCH obexd 8/8] MAP Tracker: Refactor session struct Bartosz Szatkowski
2011-09-27 9:46 ` [PATCH obexd 1/8] MAP Tracker: Fix folder and path handling Johan Hedberg
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=1314953880-4663-2-git-send-email-bulislaw@linux.com \
--to=bulislaw@linux.com \
--cc=linux-bluetooth@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).