Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Jan Kratochvil <jan.kratochvil@redhat.com>
To: Michael Snyder <msnyder@vmware.com>
Cc: "gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: Re: [rfa] add_symbol_file_command, avoid memory leak.
Date: Sun, 27 Feb 2011 22:12:00 -0000	[thread overview]
Message-ID: <20110227220544.GA24546@host1.dyn.jankratochvil.net> (raw)
In-Reply-To: <4D6AC8B5.4030702@vmware.com>

On Sun, 27 Feb 2011 22:57:09 +0100, Michael Snyder wrote:
> @@ -2169,15 +2169,15 @@ add_symbol_file_command (char *args, int
>    size_t num_sect_opts = 0;
>    struct cleanup *my_cleanups = make_cleanup (null_cleanup, NULL);
>  
> -  num_sect_opts = 16;
> -  sect_opts = (struct sect_opt *) xmalloc (num_sect_opts
> -					   * sizeof (struct sect_opt));
> -
>    dont_repeat ();
>  
>    if (args == NULL)
>      error (_("add-symbol-file takes a file name and an address"));
>  
> +  num_sect_opts = 16;
> +  sect_opts = (struct sect_opt *) xmalloc (num_sect_opts
> +					   * sizeof (struct sect_opt));
> +
>    argv = gdb_buildargv (args);
>    make_cleanup_freeargv (argv);
>  

> How about this?

Yes, the fix is OK now.  There could be also added some
	make_cleanup (xfree, sect_opts);

as discussed before; but it may be a different patch.


Thanks,
Jan


      reply	other threads:[~2011-02-27 22:05 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-27  1:56 Michael Snyder
2011-02-27 20:35 ` Jan Kratochvil
2011-02-27 20:42   ` Michael Snyder
2011-02-27 20:51     ` Jan Kratochvil
2011-02-27 22:00       ` Michael Snyder
2011-02-27 22:12         ` Jan Kratochvil [this message]

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=20110227220544.GA24546@host1.dyn.jankratochvil.net \
    --to=jan.kratochvil@redhat.com \
    --cc=gdb-patches@sourceware.org \
    --cc=msnyder@vmware.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox