diff options
Diffstat (limited to 'nest')
-rw-r--r-- | nest/proto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/proto.c b/nest/proto.c index 99a4e85..1715585 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -77,7 +77,7 @@ void * proto_new(struct proto_config *c, unsigned size) { struct protocol *pr = c->proto; - struct proto *p = mb_alloc(proto_pool, size); + struct proto *p = mb_allocz(proto_pool, size); p->cf = c; p->debug = c->debug; |