summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorNicolas R <atoomic@cpan.org>2020-11-05 10:30:34 -0600
committerKarl Williamson <khw@cpan.org>2020-11-06 09:36:42 -0700
commite437a9bd1dea4f1b6e09a65d047fdd904f60d40f (patch)
tree124b8196d68e2653e335865cdb76527dac6e4e01 /op.c
parent6a7c980ac8335e24d2699070446931a93a55d51d (diff)
downloadperl-e437a9bd1dea4f1b6e09a65d047fdd904f60d40f.tar.gz
Fix unitialized warnings in S_pmtrans
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index bf3c84ea2c..421387ed10 100644
--- a/op.c
+++ b/op.c
@@ -7021,7 +7021,7 @@ S_pmtrans(pTHX_ OP *o, OP *expr, OP *repl)
UV* t_array;
SV* t_invlist;
UV* r_map;
- UV r_cp, t_cp;
+ UV r_cp = 0, t_cp = 0;
UV t_cp_end = (UV) -1;
UV r_cp_end;
Size_t len;