summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-11-18 11:56:09 +0000
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1997-11-18 11:56:09 +0000
commit3c4f770c93854ee7c6f0c96a5913404f60061eb2 (patch)
tree18ffd9ce5deb26e9046655f0078f1049826cd9d1 /op.c
parent3d57aefb538705242f5ab4c3d9d854139b302aba (diff)
parent55d256264fa5ff79990a3e74153691aa2e477d37 (diff)
downloadperl-3c4f770c93854ee7c6f0c96a5913404f60061eb2.tar.gz
Integrate win32 branch back into mainline.
p4raw-id: //depot/perl@262
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 bc672f7562..21dc249243 100644
--- a/op.c
+++ b/op.c
@@ -4679,7 +4679,7 @@ peep(register OP *o)
case OP_LC:
case OP_LCFIRST:
case OP_QUOTEMETA:
- if (o->op_next->op_type == OP_STRINGIFY)
+ if (o->op_next && o->op_next->op_type == OP_STRINGIFY)
null(o->op_next);
o->op_seq = op_seqmax++;
break;