Skip to navigation
Panic: attempt to copy freed scalar .... at SL/Form.pm line 984
07.12.13
Reply
Anonymous
if you get this error or similar in sql-ledger panic: attempt to copy freed scalar 83e6ee0 to 8233bf0 at SL/Form.pm line 984 this is a perl 5.10 bug and it can be fixed by chaning the file SL/Form.pn $str = (defined $i) ? $self->{$var}[$i] : $self->{$var}; to: if ($var eq 'runningnumber') { $str = $i+1; } else { if (ref $self->{$var} ne "ARRAY") { $str = $self->{$var}; } else { $str = $self->{$var}[$i]; } }
07.12.13
Reply
Anonymous
Information Epoch 1732491518
Using text data files.
Home
Notebook
Contact us