Don't bother checking for NULL, vfree can handle it.
Signed-off-by: Jesper Juhl <[email protected]>
---
sound/oss/sequencer.c | 14 ++++----------
1 files changed, 4 insertions(+), 10 deletions(-)
--- linux-2.6.13-rc1-orig/sound/oss/sequencer.c 2005-06-17 21:48:29.000000000 +0200
+++ linux-2.6.13-rc1/sound/oss/sequencer.c 2005-06-30 22:21:49.000000000 +0200
@@ -1671,14 +1671,8 @@ void sequencer_init(void)
void sequencer_unload(void)
{
- if(queue)
- {
- vfree(queue);
- queue=NULL;
- }
- if(iqueue)
- {
- vfree(iqueue);
- iqueue=NULL;
- }
+ vfree(queue);
+ queue = NULL;
+ vfree(iqueue);
+ iqueue = NULL;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]