public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Steven Whitehouse <swhiteho@redhat.com>
To: Jesper Juhl <jesper.juhl@gmail.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	David Teigland <teigland@redhat.com>
Subject: Re: [PATCH] Fix memory leak in dlm_add_member() when dlm_node_weight() returns less than zero
Date: Thu, 19 Jul 2007 16:48:28 +0100	[thread overview]
Message-ID: <1184860108.8765.396.camel@quoit> (raw)
In-Reply-To: <200707190027.43195.jesper.juhl@gmail.com>

Hi,

Now in the GFS2 git tree. Thanks,

Steve.

On Thu, 2007-07-19 at 00:27 +0200, Jesper Juhl wrote:
> Greetings,
> 
> There's a memory leak in fs/dlm/member.c::dlm_add_member().
> 
> If "dlm_node_weight(ls->ls_name, nodeid)" returns < 0, then 
> we'll return without freeing the memory allocated to the (at 
> that point yet unused) 'memb'.
> This patch frees the allocated memory in that case and thus 
> avoids the leak.
> 
> 
> Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
> ---
> 
>  fs/dlm/member.c |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)
> 
> diff --git a/fs/dlm/member.c b/fs/dlm/member.c
> index 073599d..d099775 100644
> --- a/fs/dlm/member.c
> +++ b/fs/dlm/member.c
> @@ -56,8 +56,10 @@ static int dlm_add_member(struct dlm_ls *ls, int nodeid)
>  		return -ENOMEM;
>  
>  	w = dlm_node_weight(ls->ls_name, nodeid);
> -	if (w < 0)
> +	if (w < 0) {
> +		kfree(memb);
>  		return w;
> +	}
>  
>  	memb->nodeid = nodeid;
>  	memb->weight = w;
> 


      parent reply	other threads:[~2007-07-19 15:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-18 22:27 [PATCH] Fix memory leak in dlm_add_member() when dlm_node_weight() returns less than zero Jesper Juhl
2007-07-19 13:20 ` David Teigland
2007-07-19 15:48 ` Steven Whitehouse [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=1184860108.8765.396.camel@quoit \
    --to=swhiteho@redhat.com \
    --cc=jesper.juhl@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=teigland@redhat.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