Changes between Version 51 and Version 52 of Dev/Perl
- Timestamp:
- Mar 18, 2013 6:48:06 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Dev/Perl
v51 v52 152 152 > No error detection of bencoded data. Damaged input will most likely cause very bad things to happen, up to and including causeing the bdecode function to recurse infintly. 153 153 * oh... 154 155 * cpan:Class::Accessor::Fast 156 * newする際に初期値を与えないと、getterはundefを返す 157 {{{#!perl 158 use Foo; # use base qw(Class::Accessor::Fast); 159 my $foo = Foo->new; 160 $foo->hoge; # undef 161 }}}