diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-06-02 00:07:25 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-06-02 00:07:25 (GMT) |
commit | 9aa040d4ab01f34ee1d1e1f95e5678fcb404e430 (patch) | |
tree | 9172e451a2df8dab4950167350ec8a486e83c644 /Misc | |
parent | 26660401c0c7b0816392bb32bdb69eb75a3b17df (diff) | |
download | cpython-9aa040d4ab01f34ee1d1e1f95e5678fcb404e430.zip cpython-9aa040d4ab01f34ee1d1e1f95e5678fcb404e430.tar.gz cpython-9aa040d4ab01f34ee1d1e1f95e5678fcb404e430.tar.bz2 |
- Issue #2588, #2589: Fix potential integer underflow and overflow
conditions in the PyOS_vsnprintf C API function.
This is a backport of r63728 and r63734 from trunk.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -41,6 +41,9 @@ Core and builtins less than zero will now raise a SystemError and return NULL to indicate a bug in the calling C code. +- Issue #2588, #2589: Fix potential integer underflow and overflow + conditions in the PyOS_vsnprintf C API function. + Library ------- |