Skip to content

Commit cb4be40

Browse files
author
Arnaud Bouchez
committed
fixed async socket not properly closed on Linux/Epoll
1 parent 3275af7 commit cb4be40

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/mormot.commit.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
'2.0.3753'
1+
'2.0.3754'

src/net/mormot.net.sock.posix.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ type
10171017

10181018
constructor TPollSocketEpoll.Create(aOwner: TPollSockets);
10191019
begin
1020-
inherited Create(fOwner);
1020+
inherited Create(aOwner);
10211021
fMaxSockets := 100; // initial value: no limitation in practice and can grow
10221022
fEPFD := epoll_create(10000); // since 2.6.8 size is ignored
10231023
SetLength(fResults, fMaxSockets);

0 commit comments

Comments
 (0)