From 890152e338506badc1348a6d7642414a805b2419 Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 31 Dec 2015 09:30:17 -0500 Subject: driver: fix semantics of calloc() calls. --- src/driver/amgc_driver_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/driver/amgc_driver_ctx.c') diff --git a/src/driver/amgc_driver_ctx.c b/src/driver/amgc_driver_ctx.c index d2bef3f..66e4f2f 100644 --- a/src/driver/amgc_driver_ctx.c +++ b/src/driver/amgc_driver_ctx.c @@ -80,7 +80,7 @@ static struct amgc_driver_ctx_impl * amgc_driver_ctx_alloc( size = sizeof(struct amgc_driver_ctx_alloc); size += (nunits+1)*sizeof(const char *); - if (!(ictx = calloc(size,1))) + if (!(ictx = calloc(1,size))) return 0; if (cctx) -- cgit v1.2.3