diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-09-13 18:01:44 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-09-14 22:29:43 -0700 |
commit | 8f7e4d2c6f691c4079497afafd8e98a4610ced06 (patch) | |
tree | 39bbd66a10fa5ee16ad138d41f26f4fc0150cb81 /pod | |
parent | db79017c68626c46695db05da56108f703166992 (diff) | |
download | perl-8f7e4d2c6f691c4079497afafd8e98a4610ced06.tar.gz |
perldiag: ‘Attempt to free unreffed scalar’ is S
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index a916dea9db..7c116a3f5d 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -313,7 +313,7 @@ try to free it. =item Attempt to free unreferenced scalar: SV 0x%x -(W internal) Perl went to decrement the reference count of a scalar to +(S 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 |