1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 17:39:53 +03:00

Cedar/SM.c: Fix pointer usage before initialization

This commit is contained in:
Yihong Wu 2021-12-23 17:23:15 +08:00
parent 918fedb9d4
commit 77ee848caa

View File

@ -17176,7 +17176,7 @@ UINT SmSslDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param
SM_SSL *s = (SM_SSL *)param; SM_SSL *s = (SM_SSL *)param;
X *x; X *x;
K *k; K *k;
LIST *chain; LIST *chain = NULL;
// Validate arguments // Validate arguments
if (hWnd == NULL) if (hWnd == NULL)
{ {