diff options
author | Steve Dower <steve.dower@python.org> | 2019-09-03 19:50:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 19:50:51 (GMT) |
commit | 993ac92418839427d4068d6ae8e618b06b5d9294 (patch) | |
tree | 96b6441c09e4da1a050f12aae2eabd47362af09d /Misc | |
parent | 0cf832a9ef84be6e18aad02464814530d80b82b2 (diff) | |
download | cpython-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.rst | 2 |
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. |