projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a16427
)
Remove duplicate call to pthread_mutex_destroy.
author
Corey Kosak
<kosak@google.com>
Wed, 25 Nov 2015 22:03:47 +0000
(17:03 -0500)
committer
Marc Fournier
<marc.fournier@camptocamp.com>
Thu, 26 Nov 2015 10:08:38 +0000
(11:08 +0100)
src/meta_data.c
patch
|
blob
|
history
diff --git
a/src/meta_data.c
b/src/meta_data.c
index
48dcabc
..
b6483e8
100644
(file)
--- a/
src/meta_data.c
+++ b/
src/meta_data.c
@@
-250,7
+250,6
@@
void meta_data_destroy (meta_data_t *md) /* {{{ */
if (md == NULL)
return;
- pthread_mutex_destroy(&md->lock);
md_entry_free (md->head);
pthread_mutex_destroy (&md->lock);
free (md);