Skip to content
This repository was archived by the owner on Aug 12, 2018. It is now read-only.

Commit 62db550

Browse files
committed
Fix CID 1379243.
Using uninitialized value "currentLex" when calling "SendMessageW".
1 parent 17cd1b8 commit 62db550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Styles.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4349,7 +4349,7 @@ INT_PTR CALLBACK Style_ConfigDlgProc(HWND hwnd,UINT umsg,WPARAM wParam,LPARAM lP
43494349
int i;
43504350
SHFILEINFO shfi;
43514351
LOGFONT lf;
4352-
HTREEITEM currentLex;
4352+
HTREEITEM currentLex = { 0 };
43534353
int found = 0;
43544354

43554355
hwndTV = GetDlgItem(hwnd,IDC_STYLELIST);

0 commit comments

Comments
 (0)