From 813d1ee3c8b6a914599e4705eee3b8835d606e4b Mon Sep 17 00:00:00 2001 From: Lev Stipakov Date: Fri, 7 Jan 2022 14:35:50 +0200 Subject: [PATCH] auth_token.c: add NULL initialization This fixes error C4703: potentially uninitialized local pointer variable 'b64output' used found by arm64 msvc compiler with SDL enabled. Not sure why this is not triggered on x86/x64. Signed-off-by: Lev Stipakov Acked-by: Antonio Quartulli Acked-by: Arne Schwabe Message-Id: <20220107123550.188-1-lstipakov@gmail.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg23511.html Signed-off-by: Gert Doering (cherry picked from commit 4b6073b8253dafeb425361fb55bab0f2cdc5474f) --- src/openvpn/auth_token.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openvpn/auth_token.c b/src/openvpn/auth_token.c index 0ea6d1832..ca7e5a4dd 100644 --- a/src/openvpn/auth_token.c +++ b/src/openvpn/auth_token.c @@ -260,7 +260,7 @@ generate_auth_token(const struct user_pass *up, struct tls_multi *multi) ASSERT(buf_write(&token, ×tamp, sizeof(timestamp))); ASSERT(buf_write(&token, hmac_output, sizeof(hmac_output))); - char *b64output; + char *b64output = NULL; openvpn_base64_encode(BPTR(&token), BLEN(&token), &b64output); struct buffer session_token = alloc_buf_gc( -- 2.47.2