diff options
author | midipix <writeonce@midipix.org> | 2016-10-26 16:27:18 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-10-26 22:10:18 -0400 |
commit | 5334b12f17944df8a163d338479fe2090f97ce6b (patch) | |
tree | 4e182f952bee6ac18a89ac31306c05634f50c402 /src/driver | |
parent | 615ccce232a31e0323b5079f5d67ccffd2904230 (diff) | |
download | apimagic-5334b12f17944df8a163d338479fe2090f97ce6b.tar.bz2 apimagic-5334b12f17944df8a163d338479fe2090f97ce6b.tar.xz |
driver: added initial error info vector and buffer allocation.
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/amgc_driver_ctx.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/driver/amgc_driver_ctx.c b/src/driver/amgc_driver_ctx.c index 66c9ba9..728ecf5 100644 --- a/src/driver/amgc_driver_ctx.c +++ b/src/driver/amgc_driver_ctx.c @@ -87,6 +87,7 @@ static struct amgc_driver_ctx_impl * amgc_driver_ctx_alloc( size_t size; struct argv_entry * entry; const char ** aunits; + int elements; size = sizeof(struct amgc_driver_ctx_alloc); size += (nunits+1)*sizeof(const char *); @@ -106,11 +107,17 @@ static struct amgc_driver_ctx_impl * amgc_driver_ctx_alloc( if (!entry->fopt) *aunits++ = entry->arg; + elements = sizeof(ictx->ctx.erribuf) / sizeof(*ictx->ctx.erribuf); + + ictx->ctx.errinfp = &ictx->ctx.erriptr[0]; + ictx->ctx.erricap = &ictx->ctx.erriptr[--elements]; + ictx->meta = meta; ictx->ctx.fdtmpin = -1; ictx->actions = actions; ictx->ctx.actions = actions; ictx->ctx.ctx.units = ictx->units; + ictx->ctx.ctx.errv = ictx->ctx.errinfp; return &ictx->ctx; } |