Closed
Description
I did this
I create mime with simple text then I did perform and curl correcly send data.
After that I change data in text part but when I did perform again curl
send Content-Length for first data. If I change data without doing perform then
curl send correct Content-Length. This is my snippet on Lua, but I think
it quite easy to understand.
local easy = curl.easy()
local mime = easy:mime()
easy:setopt{
url = "http://127.0.0.1:7090/get";
customrequest = "GET";
mimepost = mime;
writefunction = function()end;
}
local part = mime:addpart()
part:data('1234567890')
easy:perform() -- here curl send Conten-Length: 136 (which is correct)
part:data('abcd')
easy:perform() -- here curl send same Conten-Length: 136 but data size is 130
I expected the following
I expected that curl send correct Content-Length
curl/libcurl version
libcurl/7.56.0 WinSSL
operating system
Windows 7 x64
Activity
monnerat commentedon Oct 20, 2017
Many tanks for the report: the bug is confirmed.
I will produce a fix and a test case in the next hours.
test653: check reuse of easy handle after mime data change
monnerat commentedon Oct 20, 2017
Fix pushed: cea27d3
Test for this case: 8351ab4