diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-03-15 15:22:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 15:22:01 (GMT) |
commit | 88c243fd8d5a43282ef06bd0872e3b88c68bb856 (patch) | |
tree | 5aa08f7283282d05441d4efa1b03641afe894362 /Misc/NEWS.d | |
parent | 3c4f24face4cca9256ae79bf6968663a04daf655 (diff) | |
download | cpython-88c243fd8d5a43282ef06bd0872e3b88c68bb856.zip cpython-88c243fd8d5a43282ef06bd0872e3b88c68bb856.tar.gz cpython-88c243fd8d5a43282ef06bd0872e3b88c68bb856.tar.bz2 |
bpo-43253: Don't call shutdown() for invalid socket handles (GH-31892)
(cherry picked from commit 70155412f1543f100d4aa309b8691cbcabd3e0e1)
Co-authored-by: Maximilian Hils <git@maximilianhils.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-03-15-07-53-45.bpo-43253.rjdLFj.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-03-15-07-53-45.bpo-43253.rjdLFj.rst b/Misc/NEWS.d/next/Library/2022-03-15-07-53-45.bpo-43253.rjdLFj.rst new file mode 100644 index 0000000..b9920cb --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-03-15-07-53-45.bpo-43253.rjdLFj.rst @@ -0,0 +1 @@ +Fix a crash when closing transports where the underlying socket handle is already invalid on the Proactor event loop. |