From ec6c61d89638328fc20474fbf478bde612220b13 Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Wed, 11 Feb 2015 17:46:35 +0000 Subject: [PATCH] flowctl: Replace alloca() with an array. Reviewed by: glebius --- usr.sbin/flowctl/flowctl.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/usr.sbin/flowctl/flowctl.c b/usr.sbin/flowctl/flowctl.c index 47ddadfdaa20..531b98869d95 100644 --- a/usr.sbin/flowctl/flowctl.c +++ b/usr.sbin/flowctl/flowctl.c @@ -222,12 +222,10 @@ ctl_show(int argc, char **argv) static void do_show(int version, void (*func)(struct ngnf_show_header *)) { - struct ng_mesg *ng_mesg; + struct ng_mesg ng_mesg[SORCVBUF_SIZE]; struct ngnf_show_header req, *resp; int token, nread; - ng_mesg = alloca(SORCVBUF_SIZE); - req.version = version; req.hash_id = req.list_id = 0;