mirror of
https://github.com/curl/curl.git
synced 2026-05-19 17:46:21 +03:00
Fix problem: 'result' may be used uninitialized.
Issue detected by Guenter Knauf's NetWare autobuild.
This commit is contained in:
parent
1ed09ff7a4
commit
4774582dfb
1 changed files with 2 additions and 2 deletions
|
|
@ -2175,7 +2175,7 @@ static CURLcode ssh_do(struct connectdata *conn, bool *done)
|
|||
disconnecting operations that takes a while */
|
||||
static CURLcode scp_disconnect(struct connectdata *conn)
|
||||
{
|
||||
CURLcode result;
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
Curl_safefree(conn->data->state.proto.ssh);
|
||||
conn->data->state.proto.ssh = NULL;
|
||||
|
|
@ -2331,7 +2331,7 @@ static CURLcode sftp_doing(struct connectdata *conn,
|
|||
disconnecting operations that takes a while */
|
||||
static CURLcode sftp_disconnect(struct connectdata *conn)
|
||||
{
|
||||
CURLcode result;
|
||||
CURLcode result = CURLE_OK;
|
||||
|
||||
DEBUGF(infof(conn->data, "SSH DISCONNECT starts now\n"));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue