Commit 316f1c2e authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

wininet: Port numbers are unsigned.

parent 1c7d45c0
...@@ -4068,7 +4068,7 @@ BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags, ...@@ -4068,7 +4068,7 @@ BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
INTERNET_SCHEME nScheme; INTERNET_SCHEME nScheme;
static const WCHAR slashSlashW[] = {'/','/'}; static const WCHAR slashSlashW[] = {'/','/'};
static const WCHAR percentD[] = {'%','d',0}; static const WCHAR fmtW[] = {'%','u',0};
TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength); TRACE("(%p,%d,%p,%p)\n", lpUrlComponents, dwFlags, lpszUrl, lpdwUrlLength);
...@@ -4155,7 +4155,7 @@ BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags, ...@@ -4155,7 +4155,7 @@ BOOL WINAPI InternetCreateUrlW(LPURL_COMPONENTSW lpUrlComponents, DWORD dwFlags,
{ {
WCHAR szPort[MAX_WORD_DIGITS+1]; WCHAR szPort[MAX_WORD_DIGITS+1];
sprintfW(szPort, percentD, lpUrlComponents->nPort); sprintfW(szPort, fmtW, lpUrlComponents->nPort);
*lpszUrl = ':'; *lpszUrl = ':';
lpszUrl++; lpszUrl++;
dwLen = strlenW(szPort); dwLen = strlenW(szPort);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment