wininet: Fix WININET_SetAuthorization on error path (coverity).

This commit is contained in:
André Hentschel 2012-10-30 20:07:25 +01:00 committed by Alexandre Julliard
parent 585a66a463
commit 5010f0933e
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ static BOOL WININET_SetAuthorization( http_request_t *request, LPWSTR username,
q = heap_strdupW(password);
if( !q )
{
heap_free(username);
heap_free(p);
return FALSE;
}