summaryrefslogtreecommitdiffstats
path: root/Modules/audioop.c
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-05-11 13:05:30 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-05-11 13:05:30 (GMT)
commit11bb2cdc6aa8db142a87de281b83293d500847b2 (patch)
tree5eae8b8df64e7ef9c10a2f6b95894a23aeece2a1 /Modules/audioop.c
parent5e13e291e0e2c7e8a8a7a3d1895a641277582e07 (diff)
downloadcpython-11bb2cdc6aa8db142a87de281b83293d500847b2.zip
cpython-11bb2cdc6aa8db142a87de281b83293d500847b2.tar.gz
cpython-11bb2cdc6aa8db142a87de281b83293d500847b2.tar.bz2
Issue #8674: fix another bogus overflow check in audioop module.
Diffstat (limited to 'Modules/audioop.c')
-rw-r--r--Modules/audioop.c25
1 files changed, 8 insertions, 17 deletions
diff --git a/Modules/audioop.c b/Modules/audioop.c
index 13f43dd..ba8f7ac 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -1153,25 +1153,16 @@ audioop_ratecv(PyObject *self, PyObject *args)
ceiling(len*outrate/inrate) output frames, and each frame
requires bytes_per_frame bytes. Computing this
without spurious overflow is the challenge; we can
- settle for a reasonable upper bound, though. */
- int ceiling; /* the number of output frames */
- int nbytes; /* the number of output bytes needed */
- int q = len / inrate;
- /* Now len = q * inrate + r exactly (with r = len % inrate),
- and this is less than q * inrate + inrate = (q+1)*inrate.
- So a reasonable upper bound on len*outrate/inrate is
- ((q+1)*inrate)*outrate/inrate =
- (q+1)*outrate.
- */
- ceiling = (q+1) * outrate;
- nbytes = ceiling * bytes_per_frame;
- /* See whether anything overflowed; if not, get the space. */
- if (q+1 < 0 ||
- ceiling / outrate != q+1 ||
- nbytes / bytes_per_frame != ceiling)
+ settle for a reasonable upper bound, though, in this
+ case ceiling(len/inrate) * outrate. */
+
+ /* compute ceiling(len/inrate) without overflow */
+ int q = len > 0 ? 1 + (len - 1) / inrate : 0;
+ if (outrate > INT_MAX / q / bytes_per_frame)
str = NULL;
else
- str = PyString_FromStringAndSize(NULL, nbytes);
+ str = PyString_FromStringAndSize(NULL,
+ q * outrate * bytes_per_frame);
if (str == NULL) {
PyErr_SetString(PyExc_MemoryError,