commit ab7bca4: [Minor] Propagate pcre_only flag
Vsevolod Stakhov
vsevolod at highsecure.ru
Mon Nov 23 11:07:06 UTC 2020
Author: Vsevolod Stakhov
Date: 2020-11-23 11:00:16 +0000
URL: https://github.com/rspamd/rspamd/commit/ab7bca40dccd74145a189ba3404dc450da121499
[Minor] Propagate pcre_only flag
---
src/lua/lua_config.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/src/lua/lua_config.c b/src/lua/lua_config.c
index c59850c9d..f3dc414db 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);
+ }
}
}
}
More information about the Commits
mailing list