Skip to content

Commit

Permalink
Fix div by zero bug (#88374). Add bugtracker info
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Dec 6, 2020
1 parent 516b2b9 commit 3cd94a3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Changes
@@ -1,5 +1,10 @@
Revision history for Perl module Ogg::Vorbis::Header::PurePerl.

1.04 2020-12-06 DAVECROSS

- Fix division by zero error (RT #88374)
- Add bugtracker info

1.03 2020-07-20 DAVECROSS

- Give track length a default value of zero
Expand Down
3 changes: 3 additions & 0 deletions Makefile.PL
Expand Up @@ -60,6 +60,9 @@ WriteMakefile(
web => 'https://github.com/davorg/perl-ogg-vorbis-header-pureperl',
url => 'https://github.com/davorg/perl-ogg-vorbis-header-pureperl.git',
},
bugtracker => {
web => 'https://github.com/davorg/perl-ogg-vorbis-header-pureperl/issues',
},
},
})
),
Expand Down
2 changes: 1 addition & 1 deletion lib/Ogg/Vorbis/Header/PurePerl.pm
Expand Up @@ -7,7 +7,7 @@ use warnings;
# First four bytes of stream are always OggS
use constant OGGHEADERFLAG => 'OggS';

our $VERSION = '1.03';
our $VERSION = '1.04';

sub new {
my $class = shift;
Expand Down

0 comments on commit 3cd94a3

Please sign in to comment.