From 972dc17634e430cb93b97c67b50096acc3164231 Mon Sep 17 00:00:00 2001 From: Andreas Schultz Date: Fri, 15 May 2020 11:50:07 +0200 Subject: misc: pass NULL instead of 0 for pointer in variadic functions 0 is not NULL (at least not in all cases), passing 0 into a variadic function in a place where the consumer reads it as pointer might leave parts of the pointer uninitilized and hence filled with random data. It seems that this used to work with gcc, but clang seems to treat the 0 in those places as a 32bit integer. Type: fix Signed-off-by: Ivan Shvedunov Signed-off-by: Andreas Schultz Change-Id: I37d975eef5a1ad98fbfb65ebe47d73458aafea00 --- src/vnet/session/application.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vnet') diff --git a/src/vnet/session/application.c b/src/vnet/session/application.c index 7f88c7a5ff0..67dc7d633ec 100644 --- a/src/vnet/session/application.c +++ b/src/vnet/session/application.c @@ -1681,7 +1681,7 @@ application_format_listeners (application_t * app, int verbose) if (!app) { - vlib_cli_output (vm, "%U", format_app_worker_listener, 0 /* header */ , + vlib_cli_output (vm, "%U", format_app_worker_listener, NULL /* header */, 0, 0, verbose); return; } -- cgit 1.2.3-korg