src/plugin.c: Initialize "next_read" field of read callbacks.
authorFlorian Forster <octo@collectd.org>
Sun, 3 Feb 2013 22:04:17 +0000 (23:04 +0100)
committerFlorian Forster <octo@collectd.org>
Sun, 3 Feb 2013 22:04:17 +0000 (23:04 +0100)
Fixes Github issue #230.

src/plugin.c

index cdd56bd..d895891 100644 (file)
@@ -714,6 +714,9 @@ static int plugin_insert_read (read_func_t *rf)
        int status;
        llentry_t *le;
 
+       cdtime_t now = cdtime ();
+       CDTIME_T_TO_TIMESPEC (now, &rf->rf_next_read);
+
        pthread_mutex_lock (&read_lock);
 
        if (read_list == NULL)