public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] add kmalloc check in drviers/pcmcia/rsrc_mgr.c (245-ac16)
@ 2001-06-23 13:22 Rasmus Andersen
  2001-06-23 17:09 ` Eric Lammerts
  0 siblings, 1 reply; 7+ messages in thread
From: Rasmus Andersen @ 2001-06-23 13:22 UTC (permalink / raw)
  To: dhinds; +Cc: linux-kernel

Hi.

The patch below adds a kmalloc check to drivers/pcmcmia/rsrc_mgr.c.
Against 245-ac16 but aplies to 256p6 also. Reported a while back 
by the stanford team.


--- linux-245-ac16-clean/drivers/pcmcia/rsrc_mgr.c	Sat May 19 20:59:21 2001
+++ linux-245-ac16/drivers/pcmcia/rsrc_mgr.c	Sat Jun 23 15:06:54 2001
@@ -189,6 +189,11 @@
     
     /* First, what does a floating port look like? */
     b = kmalloc(256, GFP_KERNEL);
+    if (!b) {
+	printk(" -- aborting.\n");
+	printk(KERN_ERR "Out of memory.");
+	return;
+    }
     memset(b, 0, 256);
     for (i = base, most = 0; i < base+num; i += 8) {
 	if (check_io_resource(i, 8))
-- 
Regards,
        Rasmus(rasmus@jaquet.dk)

"The obvious mathematical breakthrough would be development of an easy way
to factor large prime numbers." 
  -- Bill Gates, The Road Ahead, Viking Penguin (1995)

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2001-06-24 21:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-06-23 13:22 [PATCH] add kmalloc check in drviers/pcmcia/rsrc_mgr.c (245-ac16) Rasmus Andersen
2001-06-23 17:09 ` Eric Lammerts
2001-06-23 17:30   ` Arnaldo Carvalho de Melo
2001-06-24 19:46     ` Rasmus Andersen
2001-06-24 20:52       ` Eric Lammerts
2001-06-24 21:01         ` Rasmus Andersen
2001-06-24 21:09           ` Eric Lammerts

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox