Skip Menu |

This queue is for tickets about the CGI-CookieSerial CPAN distribution.

Report information
The Basics
Id: 24662
Status: new
Priority: 0/
Queue: CGI-CookieSerial

People
Owner: Nobody in particular
Requestors: Phil.Hooper [...] Sun.COM
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.06
Fixed in: (no value)



the cool() method is calling thaw($data) when $data is undef. if Crypt::CBC is used, changes in Crypt::CBC will kill the program if $data doesn't have a header that CBC is looking for. Probably the easiest thing is not calling thaw if $data is undef: my $soggy = ( $self->{noserialize} ) ? $data : $self->{capncrunch}->thaw ($data) if $data;