Remove a typo(?) in dlls/cryptui/main.c

Gerald Pfeifer gerald at pfeifer.com
Sat May 9 08:35:32 CDT 2009


Code like x=x=NULL doesn't look right, unless I am missing something?

The patch below fixes this in dlls/cryptui/main.c.

Gerald


ChangeLog:
Remove double assignment in import_store_dlg_proc().

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)))



More information about the wine-patches mailing list