Re: [Openvpn-devel] [PATCH] auth_token.c: add NULL initialization

2022-01-07 Thread Arne Schwabe
Am 07.01.22 um 13:35 schrieb Lev Stipakov: From: Lev Stipakov 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 ---

Re: [Openvpn-devel] [PATCH] auth_token.c: add NULL initialization

2022-01-07 Thread Antonio Quartulli
Hi, On 07/01/2022 13:35, Lev Stipakov wrote: From: Lev Stipakov 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 ---

[Openvpn-devel] [PATCH] auth_token.c: add NULL initialization

2022-01-07 Thread Lev Stipakov
From: Lev Stipakov 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 --- src/openvpn/auth_token.c | 2 +- 1 file changed, 1