wininet: Initialize url_w in InternetCrackUrlA.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2016-05-17 19:15:34 +02:00 committed by Alexandre Julliard
parent 41e45509b6
commit e0e0b6b7c6
1 changed files with 1 additions and 1 deletions

View File

@ -1551,7 +1551,7 @@ BOOL WINAPI InternetCrackUrlA(const char *url, DWORD url_length, DWORD flags, UR
{
WCHAR *host = NULL, *user = NULL, *pass = NULL, *path = NULL, *scheme = NULL, *extra = NULL;
URL_COMPONENTSW comp;
WCHAR *url_w;
WCHAR *url_w = NULL;
BOOL ret;
TRACE("(%s %u %x %p)\n", url_length ? debugstr_an(url, url_length) : debugstr_a(url), url_length, flags, ret_comp);