diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-28 14:55:33 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-28 14:55:33 (GMT) |
commit | b9b9e7b46a880e7a628a698fd47173b7f7d68870 (patch) | |
tree | 8c1e19dde122daecdf8f4e1ca64bedbfc9ba0093 /Misc | |
parent | eab770404437bd49ebf897b681221784b0035795 (diff) | |
parent | 449e2be12b654a9b892648ff5496c6d7dfbb85f9 (diff) | |
download | cpython-b9b9e7b46a880e7a628a698fd47173b7f7d68870.zip cpython-b9b9e7b46a880e7a628a698fd47173b7f7d68870.tar.gz cpython-b9b9e7b46a880e7a628a698fd47173b7f7d68870.tar.bz2 |
Issue #24456: Fixed possible buffer over-read in adpcm2lin() and lin2adpcm()
functions of the audioop module.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -25,6 +25,9 @@ Core and Builtins Library ------- +- Issue #24456: Fixed possible buffer over-read in adpcm2lin() and lin2adpcm() + functions of the audioop module. + - Issue #24336: The contextmanager decorator now works with functions with keyword arguments called "func" and "self". Patch by Martin Panter. |