[Webkit-unassigned] [Bug 272445] [Win] Some http tests are failing with libcurl 8.7.1
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu May 16 19:13:31 PDT 2024
https://bugs.webkit.org/show_bug.cgi?id=272445
--- Comment #5 from Kenji Shukuwa <kenji.shukuwa at open-tec.co.jp> ---
The cause of http/tests/inspector/network/resource-sizes-network.html was different from Comment 2.
The problem has been occurring since the following PR was merged.
https://github.com/curl/curl/pull/12964
This is due to CURLINFO_REQUEST_SIZE returning 0. Before the PR above, We were able to get CURLINFO_REQUEST_SIZE during the request header callback, but after the PR above, it returns 0, which causes the tests to fail.
https://github.com/WebKit/WebKit/blob/8d7eceb1f07dd13e4e2195f14d02fc27489a87a9/Source/WebCore/platform/network/curl/CurlContext.cpp#L889-L891
---
CURLcode errorCode = curl_easy_getinfo(m_handle, CURLINFO_REQUEST_SIZE, &requestHeaderSize);
if (errorCode != CURLE_OK)
return;
---
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240517/23206bcc/attachment.htm>
More information about the webkit-unassigned
mailing list