mirror of
https://github.com/curl/curl.git
synced 2026-04-18 13:41:41 +03:00
Andrs Garca found out that Curl_protocol_connect() could return an
uninitialized variable.
This commit is contained in:
parent
c0460660d5
commit
ec9acbcda7
1 changed files with 1 additions and 1 deletions
|
|
@ -1646,7 +1646,7 @@ CURLcode Curl_protocol_connect(struct connectdata *conn,
|
|||
Curl_addrinfo *hostaddr)
|
||||
{
|
||||
struct SessionHandle *data = conn->data;
|
||||
CURLcode result;
|
||||
CURLcode result=CURLE_OK;
|
||||
|
||||
Curl_pgrsTime(data, TIMER_CONNECT); /* connect done */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue