Home » Bug #5396
division by zero on line 935
Details
| Submitted | 2005-09-14 10:06 UTC |
|---|---|
| From | waranza at gmail dot com |
| Assigned | alexmerz |
| Status | Closed |
| Package | MP3_ID |
| PHP Version | 4.3.10 |
| OS | Windows |
| Roadmaps | (Not assigned) |
Comments
[2005-09-14 10:06 UTC] waranza at gmail dot com
Description:
------------
To prevent division by zero on line 935 I change the line:
$this->frames = ceil($this->samples / $this->samples_per_frame);
to:
if($this->samples_per_frame!=0) $this->frames = ceil($this->samples / $this->samples_per_frame);
if($this->samples_per_frame==0) $this->frames = 0;
[2005-10-04 10:59 UTC] alexmerz at php dot net
Thank you for your bug report. This issue has been fixed
in the latest released version of the package, which you can download at
http://pear.php.net/get/MP3_ID