From: Hui Zhu <teawater@gmail.com>
To: Jiang Jilin <freephp@gmail.com>,
gdb-patches ml <gdb-patches@sourceware.org>
Subject: Re: [PATCH] fixed the memory leak in record.c
Date: Thu, 27 Aug 2009 06:34:00 -0000 [thread overview]
Message-ID: <daef60380908262235k1913f1c8xd644181fdc2a834d@mail.gmail.com> (raw)
In-Reply-To: <1251342694-17525-1-git-send-email-freephp@gmail.com>
On Thu, Aug 27, 2009 at 11:11, Jiang Jilin<freephp@gmail.com> wrote:
> * record.c (record_list_release_next) : fixed memory leak when record type is record_reg
>
> Signed-off-by: Jiang Jilin <freephp@gmail.com>
> ---
> gdb/record.c | 7 ++++---
> 1 files changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/gdb/record.c b/gdb/record.c
> index 8afca6b..07e9e80 100644
> --- a/gdb/record.c
> +++ b/gdb/record.c
> @@ -158,9 +158,10 @@ record_list_release_next (void)
> {
> rec = tmp->next;
> if (tmp->type == record_reg)
> - record_insn_num--;
> - else if (tmp->type == record_reg)
> - xfree (tmp->u.reg.val);
> + {
> + record_insn_num--;
> + xfree (tmp->u.reg.val);
> + }
> else if (tmp->type == record_mem)
> xfree (tmp->u.mem.val);
> xfree (tmp);
> --
> 1.5.4.3
>
>
Cool. Thanks for find it out. :)
But this patch is not OK. This record_reg should be record_end.
I make a patch for it.
Thanks,
Hui
2009-08-27 Hui Zhu <teawater@gmail.com>
* record.c (record_list_release_next): Change the first
record_reg to record_end.
---
record.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/record.c
+++ b/record.c
@@ -157,7 +157,7 @@ record_list_release_next (void)
while (tmp)
{
rec = tmp->next;
- if (tmp->type == record_reg)
+ if (tmp->type == record_end)
record_insn_num--;
else if (tmp->type == record_reg)
xfree (tmp->u.reg.val);
next prev parent reply other threads:[~2009-08-27 5:35 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-27 5:26 Jiang Jilin
2009-08-27 6:34 ` Hui Zhu [this message]
2009-08-28 1:35 ` Hui Zhu
2009-08-28 1:57 ` Michael Snyder
2009-08-28 3:05 ` Hui Zhu
2009-08-27 18:28 ` Michael Snyder
2009-08-28 0:58 ` Jiang Jilin
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=daef60380908262235k1913f1c8xd644181fdc2a834d@mail.gmail.com \
--to=teawater@gmail.com \
--cc=freephp@gmail.com \
--cc=gdb-patches@sourceware.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