Rafael Garcia-Suarez
2006-07-23 13:00:04 UTC
Change 28606 by ***@maijstral on 2006/07/23 12:51:02
Add another volatile modifier to protect against longjmp clobbering
Affected files ...
... //depot/perl/op.c#835 edit
Differences ...
==== //depot/perl/op.c#835 (text) ====
Index: perl/op.c
--- perl/op.c#834~28565~ 2006-07-13 07:04:18.000000000 -0700
+++ perl/op.c 2006-07-23 05:51:02.000000000 -0700
@@ -2119,7 +2119,7 @@
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;
End of Patch.
Add another volatile modifier to protect against longjmp clobbering
Affected files ...
... //depot/perl/op.c#835 edit
Differences ...
==== //depot/perl/op.c#835 (text) ====
Index: perl/op.c
--- perl/op.c#834~28565~ 2006-07-13 07:04:18.000000000 -0700
+++ perl/op.c 2006-07-23 05:51:02.000000000 -0700
@@ -2119,7 +2119,7 @@
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;
End of Patch.