summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2019-09-03 19:50:51 (GMT)
committerGitHub <noreply@github.com>2019-09-03 19:50:51 (GMT)
commit993ac92418839427d4068d6ae8e618b06b5d9294 (patch)
tree96b6441c09e4da1a050f12aae2eabd47362af09d /Misc
parent0cf832a9ef84be6e18aad02464814530d80b82b2 (diff)
downloadcpython-993ac92418839427d4068d6ae8e618b06b5d9294.zip
cpython-993ac92418839427d4068d6ae8e618b06b5d9294.tar.gz
cpython-993ac92418839427d4068d6ae8e618b06b5d9294.tar.bz2
bpo-38020: Fixes crash in os.readlink() on Windows (GH-15663)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Windows/2019-09-03-11-47-37.bpo-38020.xFZ2j0.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2019-09-03-11-47-37.bpo-38020.xFZ2j0.rst b/Misc/NEWS.d/next/Windows/2019-09-03-11-47-37.bpo-38020.xFZ2j0.rst
new file mode 100644
index 0000000..e6ddaba2
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2019-09-03-11-47-37.bpo-38020.xFZ2j0.rst
@@ -0,0 +1,2 @@
+Fixes potential crash when calling :func:`os.readlink` (or indirectly
+through :func:`~os.path.realpath`) on a file that is not a supported link.