summaryrefslogtreecommitdiffhomepage
path: root/src/driver/tpax_driver_ctx.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-05-25 18:18:11 +0000
committermidipix <writeonce@midipix.org>2024-05-26 03:41:26 +0000
commitacc91bc260046e228d8043e91d33d6793fb41c1a (patch)
treea40b97ddd7cf5c1c988388e52664aea35027f74d /src/driver/tpax_driver_ctx.c
parentbef28deed2d3560dd25d3fe8c0024c94a6b15f8b (diff)
downloadtpax-acc91bc260046e228d8043e91d33d6793fb41c1a.tar.bz2
tpax-acc91bc260046e228d8043e91d33d6793fb41c1a.tar.xz
driver: implemented internal queue vectorization.
Diffstat (limited to 'src/driver/tpax_driver_ctx.c')
-rw-r--r--src/driver/tpax_driver_ctx.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/driver/tpax_driver_ctx.c b/src/driver/tpax_driver_ctx.c
index 3eca506..77eedd1 100644
--- a/src/driver/tpax_driver_ctx.c
+++ b/src/driver/tpax_driver_ctx.c
@@ -589,6 +589,9 @@ static void tpax_free_driver_ctx_impl(struct tpax_driver_ctx_alloc * ictx)
if (ictx->ctx.prefixv != ictx->ctx.prefptr)
free(ictx->ctx.prefixv);
+ if (ictx->ctx.direntv)
+ free(ictx->ctx.direntv);
+
argv_free(ictx->meta);
free(ictx);
}