Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions op.c
Original file line number Diff line number Diff line change
Expand Up @@ -1027,11 +1027,13 @@ Perl_op_free(pTHX_ OP *o)
/* S_op_clear_gv(): free a GV attached to an OP */

STATIC
#ifdef USE_ITHREADS
void S_op_clear_gv(pTHX_ OP *o, PADOFFSET *ixp)
#else
void S_op_clear_gv(pTHX_ OP *o, SV**svp)
#endif
void S_op_clear_gv(pTHX_ OP *o,
#ifdef USE_ITHREADS
PADOFFSET *ixp
#else
SV**svp
#endif
)
{

GV *gv = (o->op_type == OP_GV || o->op_type == OP_GVSV
Expand Down
Loading