mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:03:31 +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)
|
Curl_addrinfo *hostaddr)
|
||||||
{
|
{
|
||||||
struct SessionHandle *data = conn->data;
|
struct SessionHandle *data = conn->data;
|
||||||
CURLcode result;
|
CURLcode result=CURLE_OK;
|
||||||
|
|
||||||
Curl_pgrsTime(data, TIMER_CONNECT); /* connect done */
|
Curl_pgrsTime(data, TIMER_CONNECT); /* connect done */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue