wininet: Constify some character strings.

oldstable
Frédéric Delanoy 2013-12-18 23:14:15 +01:00 committed by Alexandre Julliard
parent f2e1589b34
commit 43d6a45c4e
1 changed files with 2 additions and 2 deletions

View File

@ -4058,8 +4058,8 @@ static DWORD HTTP_HandleRedirect(http_request_t *request, LPCWSTR lpszUrl)
WCHAR userName[INTERNET_MAX_USER_NAME_LENGTH];
BOOL custom_port = FALSE;
static WCHAR httpW[] = {'h','t','t','p',0};
static WCHAR httpsW[] = {'h','t','t','p','s',0};
static const WCHAR httpW[] = {'h','t','t','p',0};
static const WCHAR httpsW[] = {'h','t','t','p','s',0};
userName[0] = 0;
hostName[0] = 0;