All of lore.kernel.org
 help / color / mirror / Atom feed
* [KJ] [PATCH] [RESEND] [24/29] stradis.c - vfree() checking cleanups
@ 2005-01-04 23:17 jlamanna
  0 siblings, 0 replies; only message in thread
From: jlamanna @ 2005-01-04 23:17 UTC (permalink / raw)
  To: kernel-janitors

[-- Attachment #1: Type: text/plain, Size: 807 bytes --]

stradis.c vfree() checking cleanups.

Signed-off by: James Lamanna <jlamanna@gmail.com>

 stradis.c |    9 +++------
 1 files changed, 3 insertions(+), 6 deletions(-)


--- linux-2.6.10-vanilla/drivers/media/video/stradis.c	2004-12-24 13:35:28.000000000 -0800
+++ linux-2.6.10/drivers/media/video/stradis.c	2005-01-04 11:36:45.000000000 -0800
@@ -2188,12 +2188,9 @@
 		/* unmap and free memory */
 		saa->audhead = saa->audtail = saa->osdhead = 0;
 		saa->vidhead = saa->vidtail = saa->osdtail = 0;
-		if (saa->vidbuf)
-			vfree(saa->vidbuf);
-		if (saa->audbuf)
-			vfree(saa->audbuf);
-		if (saa->osdbuf)
-			vfree(saa->osdbuf);
+		vfree(saa->vidbuf);
+		vfree(saa->audbuf);
+		vfree(saa->osdbuf);
 		if (saa->dmavid2)
 			kfree((void *) saa->dmavid2);
 		saa->audbuf = saa->vidbuf = saa->osdbuf = NULL;


[-- Attachment #2: Type: text/plain, Size: 167 bytes --]

_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-01-04 23:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-04 23:17 [KJ] [PATCH] [RESEND] [24/29] stradis.c - vfree() checking cleanups jlamanna

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.