From 5533b084faf93424795e66636eb4f36c750b0f1a Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Fri, 2 Sep 2016 08:34:11 +0200 Subject: [PATCH] write_http plugin: Add assertion for scan-build. Issue: #1835 --- src/write_http.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/write_http.c b/src/write_http.c index 41615d3f..3d1fe3da 100644 --- a/src/write_http.c +++ b/src/write_http.c @@ -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, -- 2.11.0