mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-29 22:26:44 +07:00
drm/nouveau/bios: check for null script pointers in parser
Allows us to be lazy elsewhere... Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
5024c54b5c
commit
a8e415d3eb
@ -3771,6 +3771,10 @@ parse_init_table(struct nvbios *bios, uint16_t offset, struct init_exec *iexec)
|
||||
int count = 0, i, ret;
|
||||
uint8_t id;
|
||||
|
||||
/* catch NULL script pointers */
|
||||
if (offset == 0)
|
||||
return 0;
|
||||
|
||||
/*
|
||||
* Loop until INIT_DONE causes us to break out of the loop
|
||||
* (or until offset > bios length just in case... )
|
||||
|
Loading…
Reference in New Issue
Block a user