diff options
Diffstat (limited to 'sound/oss')
-rw-r--r-- | sound/oss/msnd.c | 6 |
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) | |||
95 | 95 | ||
96 | void msnd_fifo_free(msnd_fifo *f) | 96 | void msnd_fifo_free(msnd_fifo *f) |
97 | { | 97 | { |
98 | if (f->data) { | 98 | vfree(f->data); |
99 | vfree(f->data); | 99 | f->data = NULL; |
100 | f->data = NULL; | ||
101 | } | ||
102 | } | 100 | } |
103 | 101 | ||
104 | int msnd_fifo_alloc(msnd_fifo *f, size_t n) | 102 | int msnd_fifo_alloc(msnd_fifo *f, size_t n) |