diff options
author | Stéphane Wirtel <stephane@wirtel.be> | 2018-01-30 06:04:36 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2018-01-30 06:04:36 (GMT) |
commit | 3d86e484de6334fe16cbab512744597bd0de4e80 (patch) | |
tree | 36f3fbe909d391dddf39556c965cd57097771300 /Misc | |
parent | ce237c7d58ba207575cdfb0195a58a6407fbf717 (diff) | |
download | cpython-3d86e484de6334fe16cbab512744597bd0de4e80.zip cpython-3d86e484de6334fe16cbab512744597bd0de4e80.tar.gz cpython-3d86e484de6334fe16cbab512744597bd0de4e80.tar.bz2 |
bpo-32681: Fix an uninitialized variable in the C implementation of os.dup2 (GH-5346)
See https://bugs.python.org/issue32441 for where this was introduced.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2018-01-26-17-29-29.bpo-32681.N1ruWa.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2018-01-26-17-29-29.bpo-32681.N1ruWa.rst b/Misc/NEWS.d/next/C API/2018-01-26-17-29-29.bpo-32681.N1ruWa.rst new file mode 100644 index 0000000..1506ec7 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2018-01-26-17-29-29.bpo-32681.N1ruWa.rst @@ -0,0 +1,2 @@ +Fix uninitialized variable 'res' in the C implementation of os.dup2. Patch +by Stéphane Wirtel |