mpr: Remove unused variables.
authorAndrew Talbot <andrew.talbot@talbotville.com>
Mon, 21 Apr 2008 21:23:15 +0000 (22:23 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Tue, 22 Apr 2008 09:54:46 +0000 (11:54 +0200)
dlls/mpr/nps.c

index 2f75674b903f8986536283c11f4fc436ce206b86..f8a143363f207bfddc5dd1bf69546ef2d11ede1a 100644 (file)
@@ -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 );