projects
/
oweals
/
rpcd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee26d83
)
plugin: fix double free in finish callback
author
Jo-Philipp Wich
<jo@mein.io>
Tue, 29 Oct 2019 11:01:36 +0000
(12:01 +0100)
committer
Jo-Philipp Wich
<jo@mein.io>
Tue, 29 Oct 2019 11:01:36 +0000
(12:01 +0100)
Fixes:
37aa919
("plugin: fix leaking invoked method name for exec plugins")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
plugin.c
patch
|
blob
|
history
diff --git
a/plugin.c
b/plugin.c
index 4f84994c107f40269e8b4aba9146cc82632b0048..ecc958fd53e8256cedc74467b4a665630cf3d323 100644
(file)
--- a/
plugin.c
+++ b/
plugin.c
@@
-123,7
+123,6
@@
rpc_plugin_call_finish_cb(struct blob_buf *blob, int stat, void *priv)
json_tokener_free(c->tok);
free(c->input);
- free(c->method);
return rv;
}