mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 14:34:57 +08:00
[NEWDEV] Zero out propsheet data fields
This prevents +propsheet logging accessing uninitialized data
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user