summaryrefslogtreecommitdiff
path: root/USearch.pas
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2025-11-28 22:01:20 +0100
committerTomas Bzatek <tbzatek@redhat.com>2025-11-28 22:01:20 +0100
commitd4564a0007d1b248af07d5a29a4bd9ccedb61fde (patch)
tree600da6e36cbcfca425d0b3439df823c667d58d47 /USearch.pas
parent69dd2b81de3bcbb955669f7937f3844b86467849 (diff)
downloadtuxcmd-d4564a0007d1b248af07d5a29a4bd9ccedb61fde.tar.xz
Misc. ULibc fixes
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);