1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-08-25 13:50:12 +03:00

efi: never call qsort on potentially NULL arrays

This commit is contained in:
Lennart Poettering
2013-10-02 19:38:09 +02:00
parent b857193b1d
commit 62678deda2

View File

@ -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;