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

ftp_parselist: fix compiler warning

Doing curlx_strtoofft() on the size just to figure out the end of it
causes a compiler warning since the result wasn't used, but is also a
bit of a waste.
parent 6b5dc725
No related branches found
No related tags found
No related merge requests found
......@@ -447,9 +447,10 @@ size_t Curl_ftp_parselist(char *buffer, size_t size, size_t nmemb,
else if(c == '\n') {
finfo->b_data[parser->item_length - 1] = 0;
if(strncmp("total ", finfo->b_data, 6) == 0) {
char *endptr = NULL;
char *endptr = finfo->b_data+6;
/* here we can deal with directory size */
curlx_strtoofft(finfo->b_data+6, &endptr, 10);
while(ISSPACE(*endptr))
endptr++;
if(*endptr != 0) {
PL_ERROR(conn, CURLE_FTP_BAD_FILE_LIST);
return bufflen;
......
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