diff options
author | midipix <writeonce@midipix.org> | 2015-12-19 09:29:30 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:29 -0500 |
commit | 7770733c95046ac92b98c632374eaf7642eb1e5d (patch) | |
tree | 87ed52181af7ba8b5e0e1a6b2399c9120d0223d8 | |
parent | 43f283847eaa4d83a790698befad1427fe5af667 (diff) | |
download | mdso-7770733c95046ac92b98c632374eaf7642eb1e5d.tar.bz2 mdso-7770733c95046ac92b98c632374eaf7642eb1e5d.tar.xz |
driver: mdso_driver_ctx_alloc(): add missing initialization.
-rw-r--r-- | src/driver/mdso_driver_ctx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/driver/mdso_driver_ctx.c b/src/driver/mdso_driver_ctx.c index c88bbf4..9c891de 100644 --- a/src/driver/mdso_driver_ctx.c +++ b/src/driver/mdso_driver_ctx.c @@ -74,6 +74,7 @@ static struct mdso_driver_ctx_impl * mdso_driver_ctx_alloc(struct argv_meta * me if (!entry->fopt) *units++ = entry->arg; + ictx->meta = meta; ictx->ctx.ctx.units = ictx->units; return &ictx->ctx; } |