[PATCH] sd.c - null ptr fixes for 2.4.4

From: Praveen Srinivasan (praveens@stanford.edu)
Date: Thu May 24 2001 - 02:37:30 EST


Hi,
This patch fixes a couple of errors in the scsi driver code (sd.c).

Praveen Srinivasan and Frederick Akalin

--- ../linux/./drivers/scsi/sd.c Sat Feb 3 11:45:55 2001
+++ ./drivers/scsi/sd.c Mon May 7 22:09:58 2001
@@ -734,8 +734,15 @@
          */
 
         SRpnt = scsi_allocate_request(rscsi_disks[i].device);
+ if(SRpnt == NULL) {
+ return i;
+ }
 
         buffer = (unsigned char *) scsi_malloc(512);
+
+ if(buffer == NULL) {
+ return i;
+ }
 
         spintime = 0;
 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu May 31 2001 - 21:00:14 EST