diff options
| author | Jo-Philipp Wich | 2019-10-29 11:01:36 +0000 |
|---|---|---|
| committer | Jo-Philipp Wich | 2019-10-29 11:01:36 +0000 |
| commit | d442d62dea8d7c5f9bb58f1be257230a469f343f (patch) | |
| tree | bbe5512de697d13e3896d6e955264c3053f5aace | |
| parent | ee26d83e983f93333b9d5147285cb902bb6cc737 (diff) | |
| download | rpcd-d442d62dea8d7c5f9bb58f1be257230a469f343f.tar.gz | |
plugin: fix double free in finish callback
Fixes: 37aa919 ("plugin: fix leaking invoked method name for exec plugins")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
| -rw-r--r-- | plugin.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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; } |