Skip to content
Snippets Groups Projects
Commit 3af08472 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Removed check for ftpcode being NULL, as later it is derefenced unconditionally

anyway and we can just as well rely on it being valid.
CID 12, coverity.com scan
parent fdc1b615
No related branches found
No related tags found
No related merge requests found
......@@ -274,8 +274,7 @@ static CURLcode ftp_readresp(curl_socket_t sockfd,
struct ftp_conn *ftpc = &conn->proto.ftpc;
int code = 0;
if (ftpcode)
*ftpcode = 0; /* 0 for errors or not done */
*ftpcode = 0; /* 0 for errors or not done */
ptr=buf + ftpc->nread_resp;
......@@ -417,7 +416,6 @@ static CURLcode ftp_readresp(curl_socket_t sockfd,
*ftpcode=code; /* return the initial number like this */
/* store the latest code for later retrieval */
conn->data->info.httpcode=code;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment