From 77b97bf9eb49d3e7c02ea809352d90c98541304c Mon Sep 17 00:00:00 2001 From: midipix Date: Apr 19 2016 18:28:57 +0000 Subject: driver: alternate host settings: add missing call to slbt_free_host_params(). --- 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); }