This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2008年07月06日 21:57 by vstinner, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| audioop_findmax.patch | vstinner, 2008年07月06日 21:57 | Patch to fix described bug | ||
| Messages (2) | |||
|---|---|---|---|
| msg69356 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2008年07月06日 21:57 | |
Example:
>>> import audioop
>>> audioop.findmax(''.join( chr(x) for x in xrange(256)), -2392392)
Erreur de segmentation (core dumped)
The problem is that audioop_findmax() doesn't check len2 for negative
value. Here is a patch ;-)
|
|||
| msg69391 - (view) | Author: Facundo Batista (facundobatista) * (Python committer) | Date: 2008年07月07日 17:03 | |
Commited in r64775. Thank you very much!! |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:36 | admin | set | github: 47556 |
| 2008年07月07日 17:03:22 | facundobatista | set | status: open -> closed resolution: accepted messages: + msg69391 nosy: + facundobatista |
| 2008年07月06日 21:57:58 | vstinner | create | |