diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-02-11 11:02:42 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-02-11 11:02:42 +0000 |
commit | 6af9f27166aefa0c253486f769fac428d8fdbc20 (patch) | |
tree | 9583da7b235dffc4bbc2c1952359d58439d30f75 /src/libutil/regexp.c | |
parent | 34b41a21d7b4bcca1f662b4bdbd8618397e10bb5 (diff) | |
download | rspamd-6af9f27166aefa0c253486f769fac428d8fdbc20.tar.gz rspamd-6af9f27166aefa0c253486f769fac428d8fdbc20.zip |
Fix couple of issues found by coverity scan
Diffstat (limited to 'src/libutil/regexp.c')
-rw-r--r-- | src/libutil/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/regexp.c b/src/libutil/regexp.c index 023cc325d..4cc012567 100644 --- a/src/libutil/regexp.c +++ b/src/libutil/regexp.c @@ -476,7 +476,7 @@ fin: res->raw_re = pcre2_compile (real_pattern, PCRE2_ZERO_TERMINATED, regexp_flags & ~PCRE_FLAG(UTF), &err_code, &err_off, pcre2_ctx); - if (r == NULL) { + if (res->raw_re == NULL) { err_str = g_alloca (1024); memset (err_str, 0, 1024); pcre2_get_error_message (err_code, err_str, 1024); |