This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ddf293
)
fix coredump in S_varname (tickled by Devel::Profile)
author
Dave Mitchell
<davem@fdisolutions.com>
Fri, 25 May 2007 19:16:50 +0000
(19:16 +0000)
committer
Dave Mitchell
<davem@fdisolutions.com>
Fri, 25 May 2007 19:16:50 +0000
(19:16 +0000)
a 'Use of uninitialized value' warning within a DB sub
attempted to use the pad of the caller to locate the offending
lexical
p4raw-id: //depot/perl@31278
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
0cd9ca8
..
c2c7f4d
100644
(file)
--- a/
sv.c
+++ b/
sv.c
@@
-11778,8
+11778,7
@@
S_varname(pTHX_ GV *gv, const char gvtype, PADOFFSET targ,
}
}
else {
- U32 unused;
- CV * const cv = find_runcv(&unused);
+ CV * const cv = find_runcv(NULL);
SV *sv;
AV *av;