diff options
author | midipix <writeonce@midipix.org> | 2024-05-25 18:18:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-05-26 03:41:26 +0000 |
commit | acc91bc260046e228d8043e91d33d6793fb41c1a (patch) | |
tree | a40b97ddd7cf5c1c988388e52664aea35027f74d /src/driver | |
parent | bef28deed2d3560dd25d3fe8c0024c94a6b15f8b (diff) | |
download | tpax-acc91bc260046e228d8043e91d33d6793fb41c1a.tar.bz2 tpax-acc91bc260046e228d8043e91d33d6793fb41c1a.tar.xz |
driver: implemented internal queue vectorization.
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/tpax_driver_ctx.c | 3 |
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); } |