Home
last modified time | relevance | path

Searched hist:f13b8358 (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/fs/
H A Dnamespace.cf13b8358 Wed Mar 15 10:37:32 CST 2006 Adrian Bunk <bunk@stusta.de> [PATCH] fs/namespace.c:dup_namespace(): fix a use after free

The Coverity checker spotted the following bug in dup_namespace():

<-- snip -->

if (!new_ns->root) {
up_write(&namespace_sem);
kfree(new_ns);
goto out;
}
...
out:
return new_ns;

<-- snip -->

Callers expect a non-NULL result to not be freed.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
f13b8358 Wed Mar 15 10:37:32 CST 2006 Adrian Bunk <bunk@stusta.de> [PATCH] fs/namespace.c:dup_namespace(): fix a use after free

The Coverity checker spotted the following bug in dup_namespace():

<-- snip -->

if (!new_ns->root) {
up_write(&namespace_sem);
kfree(new_ns);
goto out;
}
...
out:
return new_ns;

<-- snip -->

Callers expect a non-NULL result to not be freed.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>