diff options
| author | Renato Westphal <renato@openbsd.org> | 2017-06-03 19:00:52 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-03 19:00:52 -0300 |
| commit | 082ac4fc2f360d2189993e429a3a35f0dac890a9 (patch) | |
| tree | 623ad786f8abc894766e8a223f7e475bed0762b7 /lib/command.c | |
| parent | 247e6469da22e1ec9b545038cb07274efe3a2713 (diff) | |
| parent | 2b4dc78f7f16b4eceb8ea7b94e2c88cc9605a5b5 (diff) | |
Merge pull request #656 from qlyoung/fix-varhandler-reachable
lib: free varhandlers on exit
Diffstat (limited to 'lib/command.c')
| -rw-r--r-- | lib/command.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/command.c b/lib/command.c index eb163f6189..38d28a1388 100644 --- a/lib/command.c +++ b/lib/command.c @@ -2611,5 +2611,6 @@ cmd_terminate () if (host.config) XFREE (MTYPE_HOST, host.config); + list_delete (varhandlers); qobj_finish (); } |
