mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
cryptui: Remove unneeded address-of operators from array names.
This commit is contained in:
parent
f0465fb021
commit
c61958ec78
@ -5471,7 +5471,7 @@ static BOOL show_import_ui(DWORD dwFlags, HWND hwndParent,
|
||||
data.autoDest = TRUE;
|
||||
data.success = TRUE;
|
||||
|
||||
memset(&pages, 0, sizeof(pages));
|
||||
memset(pages, 0, sizeof(pages));
|
||||
|
||||
pages[nPages].dwSize = sizeof(pages[0]);
|
||||
pages[nPages].hInstance = hInstance;
|
||||
@ -6884,7 +6884,7 @@ static BOOL show_export_ui(DWORD dwFlags, HWND hwndParent,
|
||||
data.file = INVALID_HANDLE_VALUE;
|
||||
data.success = FALSE;
|
||||
|
||||
memset(&pages, 0, sizeof(pages));
|
||||
memset(pages, 0, sizeof(pages));
|
||||
|
||||
pages[nPages].dwSize = sizeof(pages[0]);
|
||||
pages[nPages].hInstance = hInstance;
|
||||
|
Loading…
Reference in New Issue
Block a user