Skip to content

Release 4.3.76

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Mar 15:15
· 5 commits to master since this release
a1007b5
Prevent closing socket handle twice (#1205)

If the socket handle has been closed once, it no longer belongs to us
and it is unsafe to close it again as it could have been assigned
somewhere else in the program. On android for example, this is detected
at runtime by fdsan and causes a hard crash.

We could also consider throwing an error on the second close, however,
for now this is already a step forward.