Call rtl_do_close handler in sysfile.do_close, as reported by Kostas Michalopoulos

This commit is contained in:
ccrause 2023-08-26 09:24:46 +02:00
parent 1bcf4a5a8c
commit 5930ffa135
2 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,8 @@
{ close a file from the handle value }
procedure do_close(handle : longint);
begin
if assigned (@rtl_do_close) then
rtl_do_close(handle);
end;

View File

@ -24,6 +24,8 @@
{ close a file from the handle value }
procedure do_close(handle : longint);
begin
if assigned (@rtl_do_close) then
rtl_do_close(handle);
end;