projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
deb839e
)
plugin.c: Added a comment that explains why the order of the linked list and callback...
author
Florian Forster
<octo@huhu.verplant.org>
Mon, 21 May 2007 05:21:28 +0000
(07:21 +0200)
committer
Florian Forster
<octo@huhu.verplant.org>
Mon, 21 May 2007 05:21:28 +0000
(07:21 +0200)
src/plugin.c
patch
|
blob
|
history
diff --git
a/src/plugin.c
b/src/plugin.c
index
8087950
..
da66204
100644
(file)
--- a/
src/plugin.c
+++ b/
src/plugin.c
@@
-607,6
+607,11
@@
void plugin_shutdown_all (void)
while (le != NULL)
{
callback = (int (*) (void)) le->value;
+
+ /* Advance the pointer before calling the callback allows
+ * shutdown functions to unregister themselves. If done the
+ * other way around the memory `le' points to will be freed
+ * after callback returns. */
le = le->next;
(*callback) ();