From 49bbf9e98aacfe6f807ab54cb9aebda53e80dce8 Mon Sep 17 00:00:00 2001 From: Benoît Ganne Date: Thu, 26 Jan 2023 19:27:20 +0100 Subject: api: keep AddressSanitizer happy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Type: fix Change-Id: I793206068b8dca15b2f7f525ae1049139333c5b8 Signed-off-by: Benoît Ganne --- src/vlibapi/api_shared.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vlibapi/api_shared.c b/src/vlibapi/api_shared.c index bf037518418..0ea52802bb7 100644 --- a/src/vlibapi/api_shared.c +++ b/src/vlibapi/api_shared.c @@ -813,6 +813,7 @@ vl_msg_api_queue_handler (svm_queue_t * q) while (!svm_queue_sub (q, (u8 *) &msg, SVM_Q_WAIT, 0)) { + VL_MSG_API_UNPOISON ((u8 *) msg); msgbuf_t *msgbuf = (msgbuf_t *) ((u8 *) msg - offsetof (msgbuf_t, data)); vl_msg_api_handler ((void *) msg, ntohl (msgbuf->data_len)); } -- cgit 1.2.3-korg