diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-10-09 22:18:30 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-10-09 23:07:08 -0700 |
commit | 3e6edce2ec5de0a7a3597d5f5a127bb974b33ca8 (patch) | |
tree | aaafe606aa4a721b2e5378d99fdeb415fdbd52ad /sv.c | |
parent | 304474c3f9eec6df709a20e0dc0f6e58bffecd76 (diff) | |
download | perl-3e6edce2ec5de0a7a3597d5f5a127bb974b33ca8.tar.gz |
Avoid uninitialized warning in glob_assign_glob
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3582,7 +3582,7 @@ static void S_glob_assign_glob(pTHX_ SV *const dstr, SV *const sstr, const int dtype) { I32 mro_changes = 0; /* 1 = method, 2 = isa, 3 = recursive isa */ - HV *old_stash; + HV *old_stash = NULL; PERL_ARGS_ASSERT_GLOB_ASSIGN_GLOB; |