mirror of
https://github.com/smaeul/u-boot.git
synced 2025-11-26 22:01:10 +00:00
efi_memory: avoid possible null pointer dereference
Populate the previous memory descriptor node pointer only after it's parent struct has been initialised. The compiler fixes this logic to do the right thing, but it is better to have correct code in place. Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
22f893047d
commit
7aa0addc42
@ -138,7 +138,7 @@ static void efi_mem_sort(void)
|
||||
merge_again = false;
|
||||
list_for_each(lhandle, &efi_mem) {
|
||||
struct efi_mem_list *lmem;
|
||||
struct efi_mem_desc *prev = &prevmem->desc;
|
||||
struct efi_mem_desc *prev;
|
||||
struct efi_mem_desc *cur;
|
||||
uint64_t pages;
|
||||
|
||||
@ -149,6 +149,7 @@ static void efi_mem_sort(void)
|
||||
}
|
||||
|
||||
cur = &lmem->desc;
|
||||
prev = &prevmem->desc;
|
||||
|
||||
if ((desc_get_end(cur) == prev->physical_start) &&
|
||||
(prev->type == cur->type) &&
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user