cryptui: Remove unneeded address-of operators from array names.

oldstable
Andrew Talbot 2011-10-31 21:19:21 +00:00 committed by Alexandre Julliard
parent f0465fb021
commit c61958ec78
1 changed files with 2 additions and 2 deletions

View File

@ -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;