Commit 240b7934 authored by Armin Schindler's avatar Armin Schindler Committed by Linus Torvalds

[PATCH] Eicon driver: vfree()

Removed check for NULL pointer before doing vfree(), it's done in
vfree().
Signed-off-by: default avatarArmin Schindler <armin@melware.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 9a21b385
/* $Id: platform.h,v 1.37.4.2 2004/08/28 20:03:53 armin Exp $ /* $Id: platform.h,v 1.37.4.6 2005/01/31 12:22:20 armin Exp $
* *
* platform.h * platform.h
* *
...@@ -195,9 +195,7 @@ static __inline__ void* diva_os_malloc (unsigned long flags, unsigned long size) ...@@ -195,9 +195,7 @@ static __inline__ void* diva_os_malloc (unsigned long flags, unsigned long size)
} }
static __inline__ void diva_os_free (unsigned long flags, void* ptr) static __inline__ void diva_os_free (unsigned long flags, void* ptr)
{ {
if (ptr) { vfree(ptr);
vfree(ptr);
}
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment