cryptui: Remove double assignment in import_store_dlg_proc().

This commit is contained in:
Gerald Pfeifer 2009-05-09 15:35:32 +02:00 committed by Alexandre Julliard
parent 32eb698612
commit 8986cd1ed7

View file

@ -5170,7 +5170,7 @@ static LRESULT CALLBACK import_store_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
selectInfo.dwSize = sizeof(selectInfo);
selectInfo.parent = hwnd;
selectInfo.dwFlags = CRYPTUI_ENABLE_SHOW_PHYSICAL_STORE;
selectInfo.pwszTitle = selectInfo.pwszTitle = NULL;
selectInfo.pwszTitle = NULL;
selectInfo.pEnumData = &enumData;
selectInfo.pfnSelectedStoreCallback = NULL;
if ((store = CryptUIDlgSelectStoreW(&selectInfo)))