From 0691d6e9ff4388dc85e150c40bbc877bb74c02b1 Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Thu, 5 Jan 2017 10:08:52 -0500 Subject: Fix uninitialized stack local, VPP-581 Sporadically messes up the client message allocation ring, by setting c->message_bounce[msg_id] non-zero. A day-1 bug, made blatantly obvious by the python API language binding for no particular reason. Manually cherry-picked from stable/1701 due to the recent tree reorganization. Change-Id: Ifa03c5487436cbe50a6204db48fd9ce4938e32bb Signed-off-by: Dave Barach --- src/vlibapi/api_shared.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vlibapi') diff --git a/src/vlibapi/api_shared.c b/src/vlibapi/api_shared.c index 6a04fac9..18067d1d 100644 --- a/src/vlibapi/api_shared.c +++ b/src/vlibapi/api_shared.c @@ -691,6 +691,8 @@ vl_msg_api_set_handlers (int id, char *name, void *handler, void *cleanup, vl_msg_api_msg_config_t cfg; vl_msg_api_msg_config_t *c = &cfg; + memset (c, 0, sizeof (*c)); + c->id = id; c->name = name; c->handler = handler; -- cgit 1.2.3-korg