summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-03-01 10:28:20 (GMT)
committerXiang Zhang <angwerzx@126.com>2018-03-01 10:28:20 (GMT)
commit10fb1bf7766e7eb9500d328ddd1035e3f823fb57 (patch)
tree89203a1aedb16a199e832ebdd7ddc558575936c6 /Misc
parent32f5392f64f004382e26a988b1145d2dc96c4978 (diff)
downloadcpython-10fb1bf7766e7eb9500d328ddd1035e3f823fb57.zip
cpython-10fb1bf7766e7eb9500d328ddd1035e3f823fb57.tar.gz
cpython-10fb1bf7766e7eb9500d328ddd1035e3f823fb57.tar.bz2
bpo-32903: Fix a memory leak in os.chdir() on Windows (GH-5801) (#5946)
(cherry picked from commit 3e197c7a6740d564ad52fb7901c07d5ff49460f5) Co-authored-by: Alexey Izbyshev <izbyshev@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Windows/2018-02-28-11-03-24.bpo-32903.1SXY4t.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2018-02-28-11-03-24.bpo-32903.1SXY4t.rst b/Misc/NEWS.d/next/Windows/2018-02-28-11-03-24.bpo-32903.1SXY4t.rst
new file mode 100644
index 0000000..a20a414
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2018-02-28-11-03-24.bpo-32903.1SXY4t.rst
@@ -0,0 +1,2 @@
+Fix a memory leak in os.chdir() on Windows if the current directory is set
+to a UNC path.