From 77ee848caa221e2830aa8497022a7c1d8de9f00a Mon Sep 17 00:00:00 2001 From: Yihong Wu <54519668+domosekai@users.noreply.github.com> Date: Thu, 23 Dec 2021 17:23:15 +0800 Subject: [PATCH] Cedar/SM.c: Fix pointer usage before initialization --- src/Cedar/SM.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cedar/SM.c b/src/Cedar/SM.c index 5e8ab700..a190468a 100644 --- a/src/Cedar/SM.c +++ b/src/Cedar/SM.c @@ -17176,7 +17176,7 @@ UINT SmSslDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *param SM_SSL *s = (SM_SSL *)param; X *x; K *k; - LIST *chain; + LIST *chain = NULL; // Validate arguments if (hWnd == NULL) {