{
pcre *r;
pcre_extra *ext;
-#ifdef HAVE_PCRE_JIT
+#if defined(HAVE_PCRE_JIT) && (PCRE_MAJOR == 8 && PCRE_MINOR >= 32)
pcre_jit_stack *st;
#endif
const gchar *mt;
- gsize remain;
+ gsize remain = 0;
gint rc, match_flags = 0, ovec[10];
g_assert (re != NULL);
if (end != NULL && *end != NULL) {
/* Incremental search */
- mt = (*end) + 1;
- remain = len - (mt - text);
+ mt = (*end);
+
+ if ((gint)len > (mt - text)) {
+ remain = len - (mt - text);
+ }
}
else {
mt = text;
remain = len;
}
+ if (remain == 0) {
+ return FALSE;
+ }
+
match_flags = PCRE_NEWLINE_ANYCRLF;
if ((re->flags & RSPAMD_REGEXP_FLAG_RAW) || raw) {
r = re->raw_re;
ext = re->raw_extra;
-#ifdef HAVE_PCRE_JIT
+#if defined(HAVE_PCRE_JIT) && (PCRE_MAJOR == 8 && PCRE_MINOR >= 32)
st = re->raw_jstack;
#endif
}
match_flags |= PCRE_NO_UTF8_CHECK;
r = re->re;
ext = re->extra;
-#ifdef HAVE_PCRE_JIT
+#if defined(HAVE_PCRE_JIT) && (PCRE_MAJOR == 8 && PCRE_MINOR >= 32)
st = re->jstack;
#endif
}
if (!(re->flags & RSPAMD_REGEXP_FLAG_NOOPT)) {
#ifdef HAVE_PCRE_JIT
+# if (PCRE_MAJOR == 8 && PCRE_MINOR >= 32)
rc = pcre_jit_exec (r, ext, mt, remain, 0, match_flags, ovec,
G_N_ELEMENTS (ovec), st);
+# else
+ rc = pcre_exec (r, ext, mt, remain, 0, match_flags, ovec,
+ G_N_ELEMENTS (ovec));
+#endif
#else
rc = pcre_exec (r, ext, mt, remain, 0, match_flags, ovec,
G_N_ELEMENTS (ovec));
{
struct rspamd_lua_regexp *new, **pnew;
const gchar *line;
+ rspamd_regexp_t *re;
line = luaL_checkstring (L, 1);
- new = rspamd_regexp_cache_query (NULL, line, NULL);
- if (new) {
+ re = rspamd_regexp_cache_query (NULL, line, NULL);
+ if (re) {
+ new = g_slice_alloc (sizeof (struct rspamd_lua_regexp));
+ new->re = re;
pnew = lua_newuserdata (L, sizeof (struct rspamd_lua_regexp *));
rspamd_lua_setclass (L, "rspamd{regexp}", -1);
*pnew = new;
{
const gchar *line;
struct rspamd_lua_regexp *new, **pnew;
+ rspamd_regexp_t *re;
line = luaL_checkstring (L, 1);
- new = rspamd_regexp_cache_query (NULL, line, NULL);
- if (new) {
+ re = rspamd_regexp_cache_query (NULL, line, NULL);
+ if (re) {
+ new = g_slice_alloc (sizeof (struct rspamd_lua_regexp));
+ new->re = re;
pnew = lua_newuserdata (L, sizeof (struct rspamd_lua_regexp *));
+
rspamd_lua_setclass (L, "rspamd{regexp}", -1);
*pnew = new;
}