From: Vsevolod Stakhov Date: Mon, 23 Nov 2020 11:00:16 +0000 (+0000) Subject: [Minor] Propagate pcre_only flag X-Git-Tag: 2.7~124 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab7bca40dccd74145a189ba3404dc450da121499;p=thirdparty%2Frspamd.git [Minor] Propagate pcre_only flag --- diff --git a/src/lua/lua_config.c b/src/lua/lua_config.c index c59850c9d1..f3dc414db3 100644 --- a/src/lua/lua_config.c +++ b/src/lua/lua_config.c @@ -2990,7 +2990,6 @@ lua_config_register_regexp (lua_State *L) GError *err = NULL; enum rspamd_re_type type = RSPAMD_RE_BODY; gboolean pcre_only = FALSE; - guint old_flags; /* * - `re`* : regular expression object @@ -3027,9 +3026,8 @@ lua_config_register_regexp (lua_State *L) } else { if (pcre_only) { - old_flags = rspamd_regexp_get_flags (re->re); - old_flags |= RSPAMD_REGEXP_FLAG_PCRE_ONLY; - rspamd_regexp_set_flags (re->re, old_flags); + rspamd_regexp_set_flags (re->re, + rspamd_regexp_get_flags (re->re) | RSPAMD_REGEXP_FLAG_PCRE_ONLY); } if (header_str != NULL) { @@ -3055,6 +3053,11 @@ lua_config_register_regexp (lua_State *L) if (cache_re != re->re) { rspamd_regexp_unref (re->re); re->re = rspamd_regexp_ref (cache_re); + + if (pcre_only) { + rspamd_regexp_set_flags (re->re, + rspamd_regexp_get_flags (re->re) | RSPAMD_REGEXP_FLAG_PCRE_ONLY); + } } } }