X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fwrite_http.c;h=41615d3f0ccbd0be9c1cefba46708a4ace10e680;hb=3d74a63ae43c1786eb9b966e2209c24c5643dae8;hp=95132cf92f7bcd8d541bd53aa38a34b72de28c9a;hpb=361f0013d5a20fa0b229376ddc3804c6e00058c5;p=collectd.git diff --git a/src/write_http.c b/src/write_http.c index 95132cf9..41615d3f 100644 --- a/src/write_http.c +++ b/src/write_http.c @@ -362,7 +362,11 @@ static int wh_write_command (const data_set_t *ds, const value_list_t *vl, /* {{ int status; - if (0 != strcmp (ds->type, vl->type)) { + /* sanity checks, primarily to make static analyzers happy. */ + if ((cb == NULL) || (cb->send_buffer == NULL)) + return -1; + + if (strcmp (ds->type, vl->type) == 0) { ERROR ("write_http plugin: DS type does not match " "value list type"); return -1;