shell32: fix program search in ShellExecuteEx, quote program name if it contains spaces (resend)

Juan Lang juan.lang at gmail.com
Fri Aug 14 11:01:42 CDT 2009


Hi Stefan, I know this is nitpicking, but:
-		memcpy(buffer, sei_tmp.lpFile, idx * sizeof(WCHAR));
+        lstrcpynW(buffer, wszApplicationName, sizeof(buffer)/sizeof(WCHAR));
+	    while((space=strchrW(buffer, ' ')))

You're mixing tabs and spaces here.
--Juan



More information about the wine-devel mailing list