mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-14 15:21:32 +00:00
Check to see if we've reached the end of the map before attempting to
skip past an empty region, otherwise we end up generating an infinitely long e820 map. (Yes, there *are* real systems that provide e820 maps with a zero-length region at the end...)
This commit is contained in:
parent
c399e88aa3
commit
78dd963c1f
@ -361,7 +361,12 @@ int15_e820:
|
||||
pushl %edx
|
||||
call split_e820
|
||||
pushfw
|
||||
/* Skip empty region checking if we've reached the end of the
|
||||
* map or hit an error, to avoid a potential endless loop.
|
||||
*/
|
||||
jc 1f
|
||||
testl %ebx, %ebx
|
||||
jz 1f
|
||||
/* Check for an empty region */
|
||||
pushl %eax
|
||||
movl %es:8(%di), %eax
|
||||
|
Loading…
Reference in New Issue
Block a user