mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-28 12:02:15 -05:00
libmml: Fix Free, Realloc.
This commit is contained in:
parent
b37ad040c3
commit
9279280366
@ -99,7 +99,7 @@ begin
|
|||||||
if debug then
|
if debug then
|
||||||
writeln(last_error);
|
writeln(last_error);
|
||||||
end else
|
end else
|
||||||
Free(ptr);
|
FreeMem(ptr);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function alloc_mem(size, objsize: PtrUInt): Pointer;
|
function alloc_mem(size, objsize: PtrUInt): Pointer;
|
||||||
@ -109,7 +109,7 @@ end;
|
|||||||
|
|
||||||
function realloc_mem(ptr: Pointer; size, objsize: PtrUInt): Pointer;
|
function realloc_mem(ptr: Pointer; size, objsize: PtrUInt): Pointer;
|
||||||
begin
|
begin
|
||||||
result := ReAlloc(ptr, size*objsize);
|
result := ReAllocMem(ptr, size*objsize);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ Mouse }
|
{ Mouse }
|
||||||
|
Loading…
Reference in New Issue
Block a user