summaryrefslogtreecommitdiffstats
path: root/Modules/audioop.c
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-07-07 17:02:59 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-07-07 17:02:59 (GMT)
commit1a664419bb61079e1fd7a57bc7dc807a3d33443d (patch)
tree282957b9afcd9ab194563b29a4b47b0ff57471ca /Modules/audioop.c
parent10cf7d947d9d9cc12edef02bfb70db4ff959d8bb (diff)
downloadcpython-1a664419bb61079e1fd7a57bc7dc807a3d33443d.zip
cpython-1a664419bb61079e1fd7a57bc7dc807a3d33443d.tar.gz
cpython-1a664419bb61079e1fd7a57bc7dc807a3d33443d.tar.bz2
Issue 3306. Better control for a lenght in findmax() function.
Diffstat (limited to 'Modules/audioop.c')
-rw-r--r--Modules/audioop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/audioop.c b/Modules/audioop.c
index 31e3fa4..767cae6 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -575,7 +575,7 @@ audioop_findmax(PyObject *self, PyObject *args)
}
len1 >>= 1;
- if ( len1 < len2 ) {
+ if ( len2 < 0 || len1 < len2 ) {
PyErr_SetString(AudioopError, "Input sample should be longer");
return 0;
}