提交 ca43b317 编写于 作者: J Jesper Juhl 提交者: Linus Torvalds

[PATCH] vfree does its own NULL check, no need to be explicit in oss/msnd.c

vfree() does it's own NULL checking, no need for explicit check before
calling it.
Signed-off-by: NJesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 5a83fddd
...@@ -95,10 +95,8 @@ void msnd_fifo_init(msnd_fifo *f) ...@@ -95,10 +95,8 @@ void msnd_fifo_init(msnd_fifo *f)
void msnd_fifo_free(msnd_fifo *f) void msnd_fifo_free(msnd_fifo *f)
{ {
if (f->data) { vfree(f->data);
vfree(f->data); f->data = NULL;
f->data = NULL;
}
} }
int msnd_fifo_alloc(msnd_fifo *f, size_t n) int msnd_fifo_alloc(msnd_fifo *f, size_t n)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册