From c9ca810479718e02eeecfda9155f06585a0362fc Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Mon, 4 Feb 2013 23:59:41 +0100 Subject: [PATCH 1/1] Fix a NULL pointer dereference during shutdown Signed-off-by: Florian Forster --- src/plugin.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/plugin.c b/src/plugin.c index 70372342..942f8bfe 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -810,10 +810,12 @@ static void stop_write_threads (void) /* {{{ */ pthread_mutex_lock (&write_lock); i = 0; - for (q = write_queue_head; q != NULL; q = q->next) + for (q = write_queue_head; q != NULL; ) { + write_queue_t *q1 = q; plugin_value_list_free (q->vl); - sfree (q); + q = q->next; + sfree (q1); i++; } write_queue_head = NULL; -- 2.11.0