mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
efi: never call qsort on potentially NULL arrays
This commit is contained in:
@@ -384,7 +384,8 @@ int efi_get_boot_options(uint16_t **options) {
|
||||
list[count ++] = id;
|
||||
}
|
||||
|
||||
qsort(list, count, sizeof(uint16_t), cmp_uint16);
|
||||
if (list)
|
||||
qsort(list, count, sizeof(uint16_t), cmp_uint16);
|
||||
|
||||
*options = list;
|
||||
return count;
|
||||
|
||||
Reference in New Issue
Block a user