This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regexec.c: Rmv unnecessary assigns
authorKarl Williamson <khw@cpan.org>
Sun, 17 Mar 2019 16:19:21 +0000 (10:19 -0600)
committerKarl Williamson <khw@cpan.org>
Mon, 18 Mar 2019 16:33:31 +0000 (10:33 -0600)
commit26a67203e295db168d5dc99acd000b93c025a298
treea5eaa55a666568115448a32fdab29410613520a5
parent9f15dc73803b82c03a27427be490999360db1023
regexec.c: Rmv unnecessary assigns

We never use this variable again (this isn't in a loop unlike similar
cases in other functions in this file), so we don't care if it gets
updated.  Instead use the source value directly.
regexec.c