mirror of
https://github.com/curl/curl.git
synced 2026-07-24 00:07:17 +03:00
ftp: Fixed compiler warning
warning: 'result' may be used uninitialized in this function
This commit is contained in:
parent
d44b014271
commit
9f503a254b
1 changed files with 1 additions and 1 deletions
|
|
@ -1810,8 +1810,8 @@ static CURLcode proxy_magic(struct connectdata *conn,
|
|||
char *newhost, unsigned short newport,
|
||||
bool *magicdone)
|
||||
{
|
||||
CURLcode result = CURLE_OK;
|
||||
struct SessionHandle *data=conn->data;
|
||||
CURLcode result;
|
||||
|
||||
*magicdone = FALSE;
|
||||
switch(conn->proxytype) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue