summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-06-30 09:57:31 +0000
committerNicholas Clark <nick@ccl4.org>2005-06-30 09:57:31 +0000
commitcc8382cb63e73f1c3483d327d0b7d0f58659fd51 (patch)
treeb043b3424a8cf830de2e30f47c93986ba4d30b4f /sv.c
parent49c0300d76f341c038d0193748526c5c0e652a90 (diff)
downloadperl-cc8382cb63e73f1c3483d327d0b7d0f58659fd51.tar.gz
If gp_flags is unused, why are we even allocating it?
p4raw-id: //depot/perl@25019
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index c217558e1b..2aa2b5a895 100644
--- a/sv.c
+++ b/sv.c
@@ -10011,7 +10011,6 @@ Perl_gp_dup(pTHX_ GP *gp, CLONE_PARAMS* param)
ret->gp_egv = gv_dup(gp->gp_egv, param);/* GvEGV is not refcounted */
ret->gp_cv = cv_dup_inc(gp->gp_cv, param);
ret->gp_cvgen = gp->gp_cvgen;
- ret->gp_flags = gp->gp_flags;
ret->gp_line = gp->gp_line;
ret->gp_file = gp->gp_file; /* points to COP.cop_file */
return ret;