write_http plugin: Add assertion for scan-build.
authorFlorian Forster <octo@collectd.org>
Fri, 2 Sep 2016 06:34:11 +0000 (08:34 +0200)
committerFlorian Forster <octo@collectd.org>
Fri, 2 Sep 2016 06:34:11 +0000 (08:34 +0200)
Issue: #1835

src/write_http.c

index 41615d3..3d1fe3d 100644 (file)
@@ -419,6 +419,9 @@ static int wh_write_command (const data_set_t *ds, const value_list_t *vl, /* {{
         }
         assert (command_len < cb->send_buffer_free);
 
+        /* Make scan-build happy. */
+        assert (cb->send_buffer != NULL);
+
         /* `command_len + 1' because `command_len' does not include the
          * trailing null byte. Neither does `send_buffer_fill'. */
         memcpy (cb->send_buffer + cb->send_buffer_fill,