Change 31278 by [EMAIL PROTECTED] on 2007/05/25 19:16:50

        fix coredump in S_varname (tickled by Devel::Profile)
        a 'Use of uninitialized value' warning within a DB sub
        attempted to use the pad of the caller to locate the offending
        lexical

Affected files ...

... //depot/perl/sv.c#1406 edit

Differences ...

==== //depot/perl/sv.c#1406 (text) ====
Index: perl/sv.c
--- perl/sv.c#1405~31255~       2007-05-21 15:35:15.000000000 -0700
+++ perl/sv.c   2007-05-25 12:16:50.000000000 -0700
@@ -11778,8 +11778,7 @@
        }
     }
     else {
-       U32 unused;
-       CV * const cv = find_runcv(&unused);
+       CV * const cv = find_runcv(NULL);
        SV *sv;
        AV *av;
 
End of Patch.

Reply via email to