modbus plugin: Make sure variable is initialized.
authorFlorian Forster <octo@collectd.org>
Thu, 18 Jun 2015 14:45:23 +0000 (16:45 +0200)
committerFlorian Forster <octo@collectd.org>
Thu, 18 Jun 2015 14:45:23 +0000 (16:45 +0200)
This was introduced by the merge
(09c6a320f3cb36b5dbb2c2ce43858f33be7acf9b).

src/modbus.c

index 25aa7e2..f18b0af 100644 (file)
@@ -426,7 +426,7 @@ static int mb_read_data (mb_host_t *host, mb_slave_t *slave, /* {{{ */
   uint16_t values[2];
   int values_num;
   const data_set_t *ds;
-  int status;
+  int status = 0;
 
   if ((host == NULL) || (slave == NULL) || (data == NULL))
     return (EINVAL);