Thread Attempt to free unreferenced scalar (21 answers)
Opened by bianca at 2012-04-09 07:30

nepos
 2012-04-09 09:04
#157328 #157328
User since
2005-08-17
1420 Artikel
BenutzerIn
[Homepage] [default_avatar]
perldoc perldiag sagt:
Quote
Attempt to free unreferenced scalar
(W internal) Perl went to decrement the reference count of a scalar to see if it would go to 0, and discovered that it had already gone to 0 earlier, and should have been freed, and
in fact, probably was freed. This could indicate that SvREFCNT_dec() was called too many times, or that SvREFCNT_inc() was called too few times, or that the SV was mortalized when it
shouldn't have been, or that memory has been corrupted.


Eventuell ein Bug dieser Perl-Version. Schwer zu sagen.

View full thread Attempt to free unreferenced scalar