* grub-core/loader/i386/xnu.c (grub_cpu_xnu_fill_devprop): Don't attempt
to continue if allocation is failed. Reported by: David Volgyes <dvolgyes>.
This commit is contained in:
parent
e98c83e910
commit
fbc626665f
2 changed files with 12 additions and 5 deletions
|
@ -452,11 +452,11 @@ grub_cpu_xnu_fill_devprop (void)
|
|||
}
|
||||
|
||||
devprop = grub_xnu_create_value (&(efikey->first_child), "device-properties");
|
||||
if (devprop)
|
||||
{
|
||||
devprop->data = grub_malloc (total_length);
|
||||
devprop->datasize = total_length;
|
||||
}
|
||||
if (!devprop)
|
||||
return grub_errno;
|
||||
|
||||
devprop->data = grub_malloc (total_length);
|
||||
devprop->datasize = total_length;
|
||||
|
||||
ptr = devprop->data;
|
||||
head = ptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue