rrdtool: unlock mutex on error
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 29 Nov 2015 15:40:50 +0000 (16:40 +0100)
committerFlorian Forster <octo@collectd.org>
Mon, 30 Nov 2015 10:52:54 +0000 (11:52 +0100)
CID 37972

Signed-off-by: Florian Forster <octo@collectd.org>
src/rrdtool.c

index 192a04d..9b5723a 100644 (file)
@@ -733,7 +733,10 @@ static int rrd_cache_insert (const char *filename,
        {
                rc = malloc (sizeof (*rc));
                if (rc == NULL)
+               {
+                       pthread_mutex_unlock (&cache_lock);
                        return (-1);
+               }
                rc->values_num = 0;
                rc->values = NULL;
                rc->first_value = 0;