summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-07-23 12:51:02 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-07-23 12:51:02 +0000
commit8c06321bcee4c3ffba180fe51c1785ca0a328fdd (patch)
treeaff92a43266375357dbcd4205ed75dde2daa3441 /op.c
parent1d088ed8a1eb69310feb11b29d0e7602666238b4 (diff)
downloadperl-8c06321bcee4c3ffba180fe51c1785ca0a328fdd.tar.gz
Add another volatile modifier to protect against longjmp clobbering
p4raw-id: //depot/perl@28606
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 36aaf4bc54..45ccd85ef2 100644
--- a/op.c
+++ b/op.c
@@ -2119,7 +2119,7 @@ Perl_fold_constants(pTHX_ register OP *o)
register OP *curop;
OP *newop;
volatile I32 type = o->op_type;
- SV *sv = NULL;
+ volatile SV *sv = NULL;
int ret = 0;
I32 oldscope;
OP *old_next;