From 4d6b28934825c9c735195140271a6f93f9c07348 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Wed, 9 Nov 2011 08:54:23 -0700 Subject: [PATCH] Fix volatile declaration Commit 24efd69ba77ba76cd714519dccee88f45820d8b4 introduced a VOL declaration. I thought I had tested this, but apparently not. It needs to apply to the pointee instead of the pointer. --- regcomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regcomp.c b/regcomp.c index 1d1bf27..991f251 100644 --- a/regcomp.c +++ b/regcomp.c @@ -4523,7 +4523,7 @@ Perl_re_compile(pTHX_ SV * const pattern, U32 orig_pm_flags) struct regexp *r; register regexp_internal *ri; STRLEN plen; - VOL char *exp; + char* VOL exp; char* xend; regnode *scan; I32 flags; -- 1.8.3.1