]> Git Repo - linux.git/commitdiff
[DLM] Fix memory leak in dlm_add_member() when dlm_node_weight() returns less than...
authorJesper Juhl <[email protected]>
Wed, 18 Jul 2007 22:27:43 +0000 (00:27 +0200)
committerSteven Whitehouse <[email protected]>
Tue, 14 Aug 2007 09:30:04 +0000 (10:30 +0100)
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 <[email protected]>
Signed-off-by: David Teigland <[email protected]>
Signed-off-by: Steven Whitehouse <[email protected]>
fs/dlm/member.c

index 073599dced2ab4b2562f8f7df44db66aeaa079cc..d09977528f692c7e133a9d7702cae88411536e75 100644 (file)
@@ -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;
This page took 0.053689 seconds and 4 git commands to generate.