From: Johan Hedberg <johan.hedberg@gmail.com>
To: Vinicius Costa Gomes <vinicius.gomes@openbossa.org>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH BlueZ v2 3/4] Fix memory leak when loading keys
Date: Mon, 23 Jan 2012 13:12:05 +0200 [thread overview]
Message-ID: <20120123111205.GE13100@x220> (raw)
In-Reply-To: <1326928412-25910-3-git-send-email-vinicius.gomes@openbossa.org>
Hi Vinicius,
On Wed, Jan 18, 2012, Vinicius Costa Gomes wrote:
> If we need a copy of those keys we should copy them.
> ---
> plugins/hciops.c | 13 ++++++++++++-
> 1 files changed, 12 insertions(+), 1 deletions(-)
The two first patches have been applied but this one had some issues:
> diff --git a/plugins/hciops.c b/plugins/hciops.c
> index d4d219c..4e0729e 100644
> --- a/plugins/hciops.c
> +++ b/plugins/hciops.c
> @@ -3563,6 +3563,7 @@ static int hciops_restore_powered(int index)
> static int hciops_load_keys(int index, GSList *keys, gboolean debug_keys)
> {
> struct dev_info *dev = &devs[index];
> + GSList *l, *new;
>
> DBG("hci%d keys %d debug_keys %d", index, g_slist_length(keys),
> debug_keys);
> @@ -3570,7 +3571,17 @@ static int hciops_load_keys(int index, GSList *keys, gboolean debug_keys)
> if (dev->keys != NULL)
> return -EEXIST;
>
> - dev->keys = keys;
> + for (new = NULL, l = keys; l; l = l->next) {
> + struct link_key_info *orig, *dup;
> +
> + orig = l->data;
> +
> + dup = g_memdup(orig, sizeof(*orig));
> +
> + new = g_slist_prepend(new, dup);
> + }
> +
> + dev->keys = new;
> dev->debug_keys = debug_keys;
In general I'm always a bit on guard with usage of C++ keywords like new
and class, but in this case instead of renaming you could just prepend
directly to dev->keys, i.e. there's no need for this temporary variable.
Johan
next prev parent reply other threads:[~2012-01-23 11:12 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-18 23:13 [PATCH BlueZ v2 1/4] Add support for creating devices from the stored LTK's Vinicius Costa Gomes
2012-01-18 23:13 ` [PATCH BlueZ v2 2/4] Use the helper function to convert a string to a binary buffer Vinicius Costa Gomes
2012-01-18 23:13 ` [PATCH BlueZ v2 3/4] Fix memory leak when loading keys Vinicius Costa Gomes
2012-01-23 11:12 ` Johan Hedberg [this message]
2012-01-23 13:29 ` Vinicius Costa Gomes
2012-01-24 0:21 ` [PATCH BlueZ] " Vinicius Costa Gomes
2012-01-24 10:40 ` Anderson Lizardo
2012-01-24 10:46 ` Johan Hedberg
2012-01-24 11:46 ` Anderson Lizardo
2012-01-24 13:02 ` Johan Hedberg
2012-01-24 13:34 ` Vinicius Costa Gomes
2012-01-24 13:39 ` Johan Hedberg
2012-01-24 13:48 ` Vinicius Costa Gomes
2012-01-18 23:13 ` [PATCH BlueZ v2 4/4] Remove the SMP Long Term Key when the device is removed Vinicius Costa Gomes
2012-01-23 11:13 ` 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=20120123111205.GE13100@x220 \
--to=johan.hedberg@gmail.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=vinicius.gomes@openbossa.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).