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

#505514, as correctly pointed out by Antonio (anton@concord.ru), trying to

post a non-existing file should include nothing, not an error text!
parent 6d58d137
No related branches found
No related tags found
No related merge requests found
......@@ -1155,10 +1155,13 @@ struct FormData *Curl_getFormData(struct HttpPost *post,
}
if(fileread != stdin)
fclose(fileread);
} else {
size += AddFormData(&form, "[File wasn't found by client]", 0);
}
} else {
else {
/* File wasn't found, add a nothing field! */
size += AddFormData(&form, "", 0);
}
}
else {
/* include the contents we got */
size += AddFormData(&form, post->contents, post->contentslength);
}
......
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