Gerald Pfeifer : cryptui: Remove double assignment in import_store_dlg_proc ().
Module: wine Branch: master Commit: 8986cd1ed74f4134ee26a1a7b5f7b676523df365 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8986cd1ed74f4134ee26a1a7b5... Author: Gerald Pfeifer <gerald(a)pfeifer.com> Date: Sat May 9 15:35:32 2009 +0200 cryptui: Remove double assignment in import_store_dlg_proc(). --- dlls/cryptui/main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/cryptui/main.c b/dlls/cryptui/main.c index f6fb60c..f15420b 100644 --- a/dlls/cryptui/main.c +++ b/dlls/cryptui/main.c @@ -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)))
participants (1)
-
Alexandre Julliard