Commit 8986cd1e authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

cryptui: Remove double assignment in import_store_dlg_proc().

parent 32eb6986
...@@ -5170,7 +5170,7 @@ static LRESULT CALLBACK import_store_dlg_proc(HWND hwnd, UINT msg, WPARAM wp, ...@@ -5170,7 +5170,7 @@ static LRESULT CALLBACK import_store_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
selectInfo.dwSize = sizeof(selectInfo); selectInfo.dwSize = sizeof(selectInfo);
selectInfo.parent = hwnd; selectInfo.parent = hwnd;
selectInfo.dwFlags = CRYPTUI_ENABLE_SHOW_PHYSICAL_STORE; selectInfo.dwFlags = CRYPTUI_ENABLE_SHOW_PHYSICAL_STORE;
selectInfo.pwszTitle = selectInfo.pwszTitle = NULL; selectInfo.pwszTitle = NULL;
selectInfo.pEnumData = &enumData; selectInfo.pEnumData = &enumData;
selectInfo.pfnSelectedStoreCallback = NULL; selectInfo.pfnSelectedStoreCallback = NULL;
if ((store = CryptUIDlgSelectStoreW(&selectInfo))) if ((store = CryptUIDlgSelectStoreW(&selectInfo)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment