From: Paolo Bonzini <pbonzini@redhat.com>
To: arei.gonglei@huawei.com, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, mjt@tls.msk.ru,
weidong.huang@huawei.com, peter.huangpeng@huawei.com,
zhang.zhanghailiang@huawei.com
Subject: Re: [Qemu-trivial] [PATCH 6/9] acl: fix memory leak
Date: Mon, 17 Nov 2014 11:48:48 +0100 [thread overview]
Message-ID: <5469D290.5080202@redhat.com> (raw)
In-Reply-To: <1416046008-7880-7-git-send-email-arei.gonglei@huawei.com>
On 15/11/2014 11:06, arei.gonglei@huawei.com wrote:
> From: Gonglei <arei.gonglei@huawei.com>
>
> If 'i != index' for all acl->entries, variable
> entry leaks the storage it points to.
>
> Signed-off-by: Gonglei <arei.gonglei@huawei.com>
> ---
> util/acl.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/util/acl.c b/util/acl.c
> index 938b7ae..571d686 100644
> --- a/util/acl.c
> +++ b/util/acl.c
> @@ -132,7 +132,6 @@ int qemu_acl_insert(qemu_acl *acl,
> const char *match,
> int index)
> {
> - qemu_acl_entry *entry;
> qemu_acl_entry *tmp;
> int i = 0;
>
> @@ -142,13 +141,14 @@ int qemu_acl_insert(qemu_acl *acl,
> return qemu_acl_append(acl, deny, match);
> }
>
> - entry = g_malloc(sizeof(*entry));
> - entry->match = g_strdup(match);
> - entry->deny = deny;
> -
> QTAILQ_FOREACH(tmp, &acl->entries, next) {
> i++;
> if (i == index) {
> + qemu_acl_entry *entry;
> + entry = g_malloc(sizeof(*entry));
> + entry->match = g_strdup(match);
> + entry->deny = deny;
> +
> QTAILQ_INSERT_BEFORE(tmp, entry, next);
> acl->nentries++;
> break;
>
This should never happen, but the patch doesn't hurt either.
Paolo
WARNING: multiple messages have this Message-ID (diff)
From: Paolo Bonzini <pbonzini@redhat.com>
To: arei.gonglei@huawei.com, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, mjt@tls.msk.ru,
weidong.huang@huawei.com, peter.huangpeng@huawei.com,
zhang.zhanghailiang@huawei.com
Subject: Re: [Qemu-devel] [PATCH 6/9] acl: fix memory leak
Date: Mon, 17 Nov 2014 11:48:48 +0100 [thread overview]
Message-ID: <5469D290.5080202@redhat.com> (raw)
In-Reply-To: <1416046008-7880-7-git-send-email-arei.gonglei@huawei.com>
On 15/11/2014 11:06, arei.gonglei@huawei.com wrote:
> From: Gonglei <arei.gonglei@huawei.com>
>
> If 'i != index' for all acl->entries, variable
> entry leaks the storage it points to.
>
> Signed-off-by: Gonglei <arei.gonglei@huawei.com>
> ---
> util/acl.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/util/acl.c b/util/acl.c
> index 938b7ae..571d686 100644
> --- a/util/acl.c
> +++ b/util/acl.c
> @@ -132,7 +132,6 @@ int qemu_acl_insert(qemu_acl *acl,
> const char *match,
> int index)
> {
> - qemu_acl_entry *entry;
> qemu_acl_entry *tmp;
> int i = 0;
>
> @@ -142,13 +141,14 @@ int qemu_acl_insert(qemu_acl *acl,
> return qemu_acl_append(acl, deny, match);
> }
>
> - entry = g_malloc(sizeof(*entry));
> - entry->match = g_strdup(match);
> - entry->deny = deny;
> -
> QTAILQ_FOREACH(tmp, &acl->entries, next) {
> i++;
> if (i == index) {
> + qemu_acl_entry *entry;
> + entry = g_malloc(sizeof(*entry));
> + entry->match = g_strdup(match);
> + entry->deny = deny;
> +
> QTAILQ_INSERT_BEFORE(tmp, entry, next);
> acl->nentries++;
> break;
>
This should never happen, but the patch doesn't hurt either.
Paolo
next prev parent reply other threads:[~2014-11-17 10:49 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-15 10:06 [Qemu-trivial] [PATCH 0/9] Fix Coverity warning reports arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 1/9] l2tpv3: fix fd leak arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-17 16:51 ` [Qemu-trivial] " Stefan Hajnoczi
2014-11-17 16:51 ` Stefan Hajnoczi
2014-11-17 16:58 ` [Qemu-trivial] " Michael Tokarev
2014-11-17 16:58 ` [Qemu-devel] " Michael Tokarev
2014-11-18 7:50 ` [Qemu-trivial] " Markus Armbruster
2014-11-18 7:50 ` Markus Armbruster
2014-11-18 8:07 ` [Qemu-trivial] " Gonglei
2014-11-18 8:07 ` Gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 2/9] mips_mipssim: fix use-after-free for filename arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 3/9] qga: fix false negative argument passing arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 4/9] loader: fix NEGATIVE_RETURNS arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 5/9] nvme: remove superfluous check arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-17 16:55 ` [Qemu-trivial] " Stefan Hajnoczi
2014-11-17 16:55 ` Stefan Hajnoczi
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 6/9] acl: fix memory leak arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-17 10:48 ` Paolo Bonzini [this message]
2014-11-17 10:48 ` Paolo Bonzini
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 7/9] qemu-char: fix MISSING_COMMA arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 8/9] shpc: fix dead code arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-15 10:06 ` [Qemu-trivial] [PATCH 9/9] hcd-musb: fix dereference null return value arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] " arei.gonglei
2014-11-17 10:58 ` [Qemu-trivial] " Paolo Bonzini
2014-11-17 10:58 ` [Qemu-devel] " Paolo Bonzini
2014-11-17 11:18 ` [Qemu-trivial] " Gonglei
2014-11-17 11:18 ` [Qemu-devel] " Gonglei
2014-11-17 12:55 ` [Qemu-trivial] " Gonglei
2014-11-17 12:55 ` [Qemu-devel] " Gonglei
2014-11-17 13:36 ` [Qemu-trivial] " Gerd Hoffmann
2014-11-17 13:36 ` [Qemu-devel] " Gerd Hoffmann
2014-11-17 13:39 ` [Qemu-trivial] " Paolo Bonzini
2014-11-17 13:39 ` [Qemu-devel] " Paolo Bonzini
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=5469D290.5080202@redhat.com \
--to=pbonzini@redhat.com \
--cc=arei.gonglei@huawei.com \
--cc=mjt@tls.msk.ru \
--cc=peter.huangpeng@huawei.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=weidong.huang@huawei.com \
--cc=zhang.zhanghailiang@huawei.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.