summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorJesper Juhl2006-03-28 11:56:51 +0200
committerLinus Torvalds2006-03-28 19:16:08 +0200
commitca43b317fc557bbcca845c684d93375286bf9e0b (patch)
tree5f90347c80748e05bcc797fa0bf2791f2fd85232 /sound
parent[PATCH] no need to check vfree arg for null in oss/sequencer (diff)
downloadkernel-qcow2-linux-ca43b317fc557bbcca845c684d93375286bf9e0b.tar.gz
kernel-qcow2-linux-ca43b317fc557bbcca845c684d93375286bf9e0b.tar.xz
kernel-qcow2-linux-ca43b317fc557bbcca845c684d93375286bf9e0b.zip
[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: Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/oss/msnd.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/oss/msnd.c b/sound/oss/msnd.c
index a7ad2b0a2ac0..5dbfc0f9c3c7 100644
--- a/sound/oss/msnd.c
+++ b/sound/oss/msnd.c
@@ -95,10 +95,8 @@ void msnd_fifo_init(msnd_fifo *f)
void msnd_fifo_free(msnd_fifo *f)
{
- if (f->data) {
- vfree(f->data);
- f->data = NULL;
- }
+ vfree(f->data);
+ f->data = NULL;
}
int msnd_fifo_alloc(msnd_fifo *f, size_t n)