Merged relocators in xnu-reloc
This commit is contained in:
commit
b88e596bbd
1 changed files with 3 additions and 0 deletions
|
@ -41,6 +41,9 @@ PREFIX (realloc) (void *relocator, grub_size_t size)
|
||||||
{
|
{
|
||||||
char *playground;
|
char *playground;
|
||||||
|
|
||||||
|
if (!relocator)
|
||||||
|
return PREFIX (alloc) (size);
|
||||||
|
|
||||||
playground = (char *) relocator - PRE_REGION_SIZE;
|
playground = (char *) relocator - PRE_REGION_SIZE;
|
||||||
|
|
||||||
playground = grub_realloc (playground, size + MAX_OVERHEAD);
|
playground = grub_realloc (playground, size + MAX_OVERHEAD);
|
||||||
|
|
Loading…
Reference in a new issue