diff options
author | Zackery Spytz <zspytz@gmail.com> | 2018-09-21 06:09:48 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-09-21 06:09:48 (GMT) |
commit | 91e6c8717b7dcbcc46b189509de5f2d335819f37 (patch) | |
tree | 8fb5e38471f96e5816d698f83525d2c973095257 /Misc | |
parent | c510c6b8b60f211793e0b84c317ea6974e8a6153 (diff) | |
download | cpython-91e6c8717b7dcbcc46b189509de5f2d335819f37.zip cpython-91e6c8717b7dcbcc46b189509de5f2d335819f37.tar.gz cpython-91e6c8717b7dcbcc46b189509de5f2d335819f37.tar.bz2 |
bpo-34735: Fix a memory leak in Modules/timemodule.c (GH-9418)
There was a missing PyMem_Free(format) in time_strftime().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-09-19-06-57-34.bpo-34735.-3mrSJ.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-09-19-06-57-34.bpo-34735.-3mrSJ.rst b/Misc/NEWS.d/next/Core and Builtins/2018-09-19-06-57-34.bpo-34735.-3mrSJ.rst new file mode 100644 index 0000000..8de08ec --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-09-19-06-57-34.bpo-34735.-3mrSJ.rst @@ -0,0 +1 @@ +Fix a memory leak in Modules/timemodule.c. Patch by Zackery Spytz. |