From 0739567dac835395f800fff093cc183689e4a8ae Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Mon, 21 Apr 2008 22:23:15 +0100 Subject: [PATCH] mpr: Remove unused variables. --- dlls/mpr/nps.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dlls/mpr/nps.c b/dlls/mpr/nps.c index 2f75674b903..f8a143363f2 100644 --- a/dlls/mpr/nps.c +++ b/dlls/mpr/nps.c @@ -76,14 +76,10 @@ static INT_PTR WINAPI NPS_ProxyPasswordDialog( case WM_COMMAND: if( wParam == IDOK ) { - WCHAR username[0x20], password[0x20]; - - username[0] = 0; hitem = GetDlgItem( hdlg, IDC_USERNAME ); if( hitem ) GetWindowTextA( hitem, lpAuthDlgStruct->lpUsername, lpAuthDlgStruct->cbUsername ); - - password[0] = 0; + hitem = GetDlgItem( hdlg, IDC_PASSWORD ); if( hitem ) GetWindowTextA( hitem, lpAuthDlgStruct->lpPassword, lpAuthDlgStruct->cbPassword );