From: Ian Campbell <Ian.Campbell@citrix.com>
To: Wei Liu <wei.liu2@citrix.com>
Cc: Ian Jackson <ian.jackson@eu.citrix.com>, xen-devel@lists.xen.org
Subject: Re: [PATCH for-4.5] xl: fix two memory leaks
Date: Mon, 1 Dec 2014 09:34:47 +0000 [thread overview]
Message-ID: <1417426487.23604.74.camel@citrix.com> (raw)
In-Reply-To: <1417384485-20874-1-git-send-email-wei.liu2@citrix.com>
On Sun, 2014-11-30 at 21:54 +0000, Wei Liu wrote:
> There are two invocations of libxl_basename, which returns a malloc'ed
> string. Those strings should be freed after used.
>
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
> Cc: Ian Campbell <ian.campbell@citrix.com>
> Cc: Ian Jackson <ian.jackson@eu.citrix.com>
> ---
> tools/libxl/xl_cmdimpl.c | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c
> index 9afef3f..716a865 100644
> --- a/tools/libxl/xl_cmdimpl.c
> +++ b/tools/libxl/xl_cmdimpl.c
> @@ -920,6 +920,7 @@ static void parse_config_data(const char *config_source,
> int pci_permissive = 0;
> int pci_seize = 0;
> int i, e;
> + const char *basename;
>
> libxl_domain_create_info *c_info = &d_config->c_info;
> libxl_domain_build_info *b_info = &d_config->b_info;
> @@ -1116,13 +1117,16 @@ static void parse_config_data(const char *config_source,
>
> switch(b_info->type) {
> case LIBXL_DOMAIN_TYPE_HVM:
> - if (!strcmp(libxl_basename(b_info->kernel), "hvmloader")) {
> + basename = libxl_basename(b_info->kernel);
> + if (!strcmp(basename, "hvmloader")) {
> fprintf(stderr, "WARNING: you seem to be using \"kernel\" "
> "directive to override HVM guest firmware. Ignore "
> "that. Use \"firmware_override\" instead if you "
> "really want a non-default firmware\n");
> b_info->kernel = NULL;
> }
> + free((void*)basename);
I think you should un-const the declaration (in both cases) rather than
adding casts.
> + basename = NULL;
>
> xlu_cfg_replace_string (config, "firmware_override",
> &b_info->u.hvm.firmware, 0);
> @@ -7021,7 +7025,7 @@ int main_cpupoolcreate(int argc, char **argv)
> int config_len = 0;
> XLU_Config *config;
> const char *buf;
> - const char *name;
> + const char *name = NULL;
> uint32_t poolid;
> libxl_scheduler sched = 0;
> XLU_ConfigList *cpus;
> @@ -7196,6 +7200,7 @@ out_cfg:
> xlu_cfg_destroy(config);
> out:
> free(config_data);
> + free((void*)name);
> return rc;
> }
>
next prev parent reply other threads:[~2014-12-01 9:34 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-30 21:54 [PATCH for-4.5] xl: fix two memory leaks Wei Liu
2014-12-01 9:34 ` Ian Campbell [this message]
2014-12-01 10:10 ` Wei Liu
2014-12-01 10:21 ` Ian Campbell
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=1417426487.23604.74.camel@citrix.com \
--to=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.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 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.