mirror of
https://github.com/ipxe/ipxe
synced 2025-12-07 18:00:28 +03:00
[arbel] Assert that mapping length is non-zero
An (impossible) mapping length of zero produces a negative bit shift, which is technically undefined. Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -1972,6 +1972,7 @@ static int arbel_map_vpm ( struct arbel *arbel,
|
||||
assert ( ( va & ( ARBEL_PAGE_SIZE - 1 ) ) == 0 );
|
||||
assert ( ( pa & ( ARBEL_PAGE_SIZE - 1 ) ) == 0 );
|
||||
assert ( ( len & ( ARBEL_PAGE_SIZE - 1 ) ) == 0 );
|
||||
assert ( len != 0 );
|
||||
|
||||
/* Calculate starting points */
|
||||
start = pa;
|
||||
|
||||
Reference in New Issue
Block a user