diff options
author | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-11-18 11:56:09 +0000 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1997-11-18 11:56:09 +0000 |
commit | 3c4f770c93854ee7c6f0c96a5913404f60061eb2 (patch) | |
tree | 18ffd9ce5deb26e9046655f0078f1049826cd9d1 /op.c | |
parent | 3d57aefb538705242f5ab4c3d9d854139b302aba (diff) | |
parent | 55d256264fa5ff79990a3e74153691aa2e477d37 (diff) | |
download | perl-3c4f770c93854ee7c6f0c96a5913404f60061eb2.tar.gz |
Integrate win32 branch back into mainline.
p4raw-id: //depot/perl@262
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |