提交 8b0e330b 编写于 作者: A Andrew Morton 提交者: Linus Torvalds

[PATCH] alloc_fdtable() cleanup

free_fdset(NULL, ...) is legal.
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 07563c71
......@@ -281,10 +281,8 @@ static struct fdtable *alloc_fdtable(int nr)
out2:
nfds = fdt->max_fdset;
out:
if (new_openset)
free_fdset(new_openset, nfds);
if (new_execset)
free_fdset(new_execset, nfds);
free_fdset(new_openset, nfds);
free_fdset(new_execset, nfds);
kfree(fdt);
return NULL;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册