projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
74b894a
)
rrdtool: unlock mutex on error
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sun, 29 Nov 2015 15:40:50 +0000
(16:40 +0100)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sun, 29 Nov 2015 15:40:50 +0000
(16:40 +0100)
CID 37972
src/rrdtool.c
patch
|
blob
|
history
diff --git
a/src/rrdtool.c
b/src/rrdtool.c
index
764d6d6
..
e093f2b
100644
(file)
--- a/
src/rrdtool.c
+++ b/
src/rrdtool.c
@@
-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;