summaryrefslogtreecommitdiff
path: root/USearch.pas
diff options
context:
space:
mode:
Diffstat (limited to 'USearch.pas')
-rw-r--r--USearch.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/USearch.pas b/USearch.pas
index 5e981e0..b6ba0a2 100644
--- a/USearch.pas
+++ b/USearch.pas
@@ -1089,7 +1089,7 @@ var fd: TEngineFileDes;
begin
Result := False;
try
- Buffer := malloc(BlockSize);
+ Buffer := libc_malloc(BlockSize);
if Buffer = nil then Exit;
memset(Buffer, 0, BlockSize);
fd := FEngine.OpenFile(FileName, omRead, nil);