mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Submitted by: bde@zeta.org.au (Bruce Evans)
Fix it so that calls to extend_get won't dereference 0 when "swap on sd.." calls sdsize() on systems with no SCSI devices. This probably really fixes Poul's "boot with no SCSI" problem.
This commit is contained in:
parent
f7ae0afb88
commit
558b7c23d1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6936
1 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* New configuration setup: dufault@hda.com
|
* New configuration setup: dufault@hda.com
|
||||||
*
|
*
|
||||||
* $Id: scsiconf.c,v 1.20 1995/03/01 22:24:43 dufault Exp $
|
* $Id: scsiconf.c,v 1.21 1995/03/04 20:50:58 dufault Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
@ -100,8 +100,8 @@ void *extend_set(struct extend_array *ea, int index, void *value)
|
||||||
|
|
||||||
void *extend_get(struct extend_array *ea, int index)
|
void *extend_get(struct extend_array *ea, int index)
|
||||||
{
|
{
|
||||||
if (index >= ea->nelem || index < 0)
|
if (ea == NULL || index >= ea->nelem || index < 0)
|
||||||
return 0;
|
return NULL;
|
||||||
return ea->ps[index];
|
return ea->ps[index];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue