Browse Source

Fix couple of issues found by coverity scan

tags/1.2.0
Vsevolod Stakhov 8 years ago
parent
commit
6af9f27166
4 changed files with 6 additions and 2 deletions
  1. 1
    1
      src/libstat/backends/redis_backend.c
  2. 3
    0
      src/libutil/http.c
  3. 1
    1
      src/libutil/regexp.c
  4. 1
    0
      src/rspamadm/configdump.c

+ 1
- 1
src/libstat/backends/redis_backend.c View File

@@ -240,7 +240,7 @@ rspamd_redis_expand_object (const gchar *pattern,
}
}

if (target == NULL) {
if (target == NULL || task == NULL) {
return tlen;
}


+ 3
- 0
src/libutil/http.c View File

@@ -431,6 +431,9 @@ rspamd_http_parse_key (rspamd_ftok_t *data, struct rspamd_http_connection *conn,
priv->local_key, priv->msg->peer_key);
}
}
else {
rspamd_pubkey_unref (pk);
}
}
}


+ 1
- 1
src/libutil/regexp.c View File

@@ -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);

+ 1
- 0
src/rspamadm/configdump.c View File

@@ -104,6 +104,7 @@ rspamadm_add_doc_elt (const ucl_object_t *obj, const ucl_object_t *doc_obj,
nobj = ucl_object_fromstring_common ("/*", 0, 0);
}
else {
rspamd_fstring_free (comment);
return;
}


Loading…
Cancel
Save