提交 603f202e 编写于 作者: A Alan 提交者: James Bottomley

[SCSI] mac_scsi: Fix crash on out of memory

Missing check on scsi_register
Signed-off-by: NAlan Cox <gnomes@lxorguk.ukuu.org.uk>
Signed-off-by: NJames Bottomley <JBottomley@Parallels.com>
上级 769989a4
...@@ -260,6 +260,8 @@ int __init macscsi_detect(struct scsi_host_template * tpnt) ...@@ -260,6 +260,8 @@ int __init macscsi_detect(struct scsi_host_template * tpnt)
/* Once we support multiple 5380s (e.g. DuoDock) we'll do /* Once we support multiple 5380s (e.g. DuoDock) we'll do
something different here */ something different here */
instance = scsi_register (tpnt, sizeof(struct NCR5380_hostdata)); instance = scsi_register (tpnt, sizeof(struct NCR5380_hostdata));
if (instance == NULL)
return 0;
if (macintosh_config->ident == MAC_MODEL_IIFX) { if (macintosh_config->ident == MAC_MODEL_IIFX) {
mac_scsi_regp = via1+0x8000; mac_scsi_regp = via1+0x8000;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册