提交 a8e415d3 编写于 作者: B Ben Skeggs

drm/nouveau/bios: check for null script pointers in parser

Allows us to be lazy elsewhere...
Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
上级 5024c54b
......@@ -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... )
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册