credui: The pszUserName parameter in CredUIPromptForCredentialsW is in/out so dump the string on entry to the function.
This commit is contained in:
parent
23c58d3a21
commit
ff014a8f6a
|
@ -146,8 +146,8 @@ DWORD WINAPI CredUIPromptForCredentialsW(PCREDUI_INFOW pUIInfo,
|
|||
INT_PTR ret;
|
||||
struct cred_dialog_params params;
|
||||
|
||||
TRACE("(%p, %s, %p, %d, %p, %d, %p, %d, %p, 0x%08x)\n", pUIInfo,
|
||||
debugstr_w(pszTargetName), Reserved, dwAuthError, pszUsername,
|
||||
TRACE("(%p, %s, %p, %d, %s, %d, %p, %d, %p, 0x%08x)\n", pUIInfo,
|
||||
debugstr_w(pszTargetName), Reserved, dwAuthError, debugstr_w(pszUsername),
|
||||
ulUsernameMaxChars, pszPassword, ulPasswordMaxChars, pfSave, dwFlags);
|
||||
|
||||
params.pszTargetName = pszTargetName;
|
||||
|
|
Loading…
Reference in New Issue