[NEWDEV] Zero out propsheet data fields

This prevents +propsheet logging accessing uninitialized data
This commit is contained in:
Mark Jansen 2020-01-24 20:07:24 +01:00
parent c09636f946
commit 097355db60
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -1300,9 +1300,9 @@ DisplayWizard(
IN HWND hwndParent,
IN UINT startPage)
{
PROPSHEETHEADER psh;
PROPSHEETHEADER psh = {0};
HPROPSHEETPAGE ahpsp[IDD_MAXIMUMPAGE + 1];
PROPSHEETPAGE psp;
PROPSHEETPAGE psp = {0};
/* zero based index */
startPage -= IDD_FIRSTPAGE;