diff options
author | midipix <writeonce@midipix.org> | 2016-04-19 14:26:40 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-04-19 14:28:57 -0400 |
commit | 77b97bf9eb49d3e7c02ea809352d90c98541304c (patch) | |
tree | 0b16c01ee749c2aa721f27d173607f578d086859 | |
parent | c6e3d10c29a69dda3d2d2e9ab3edc927bd899a93 (diff) | |
download | slibtool-77b97bf9eb49d3e7c02ea809352d90c98541304c.tar.bz2 slibtool-77b97bf9eb49d3e7c02ea809352d90c98541304c.tar.xz |
driver: alternate host settings: add missing call to slbt_free_host_params().
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 68ddee8..42978d2 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -895,6 +895,7 @@ static void slbt_free_driver_ctx_impl(struct slbt_driver_ctx_alloc * ictx) free(ictx->ctx.libname); slbt_free_host_params(&ictx->ctx.host); + slbt_free_host_params(&ictx->ctx.ahost); argv_free(ictx->meta); free(ictx); } |