diff options
Diffstat (limited to 'src/libutil/regexp.c')
-rw-r--r-- | src/libutil/regexp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libutil/regexp.c b/src/libutil/regexp.c index 6da0a663e..3b76d15e0 100644 --- a/src/libutil/regexp.c +++ b/src/libutil/regexp.c @@ -296,6 +296,10 @@ rspamd_regexp_search (rspamd_regexp_t *re, const gchar *text, gsize len, g_assert (re != NULL); g_assert (text != NULL); + if (len == 0) { + len = strlen (text); + } + if (end != NULL && *end != NULL) { /* Incremental search */ mt = (*end); |