Merge branch 'collectd-5.7'
[collectd.git] / src / write_http.c
index 6127c04..c33ab54 100644 (file)
@@ -390,6 +390,9 @@ static int wh_write_command(const data_set_t *ds,
   }
   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, command, command_len + 1);
@@ -809,5 +812,3 @@ void module_register(void) /* {{{ */
   plugin_register_complex_config("write_http", wh_config);
   plugin_register_init("write_http", wh_init);
 } /* }}} void module_register */
-
-/* vim: set fdm=marker sw=8 ts=8 tw=78 et : */