projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8428bc
)
varnish: fix leak on read
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sat, 4 Jul 2015 20:49:49 +0000
(22:49 +0200)
committer
Florian Forster
<octo@collectd.org>
Fri, 10 Jul 2015 09:31:20 +0000
(11:31 +0200)
Since VSM_Close doesn't free the object we leak a few bytes
every interval
src/varnish.c
patch
|
blob
|
history
diff --git
a/src/varnish.c
b/src/varnish.c
index
b962261
..
a27f9cf
100644
(file)
--- a/
src/varnish.c
+++ b/
src/varnish.c
@@
-643,7
+643,7
@@
static int varnish_read (user_data_t *ud) /* {{{ */
varnish_monitor (conf, stats);
- VSM_
Clos
e (vd);
+ VSM_
Delet
e (vd);
return (0);
} /* }}} */