On Wed, 30 Aug 2023 14:32:37 GMT, Andrew Brygin <b...@openjdk.org> wrote:

> This issue is a regression from  7e48413eb0 8285881: Update WebKit to 614.1. 
> For synchronous requests, we have an additional buffer to collect data, and 
> the appending data into this buffer is doing in a wrong way:  we use 
> Vector::append(U&& u), which adds only the first data element. Instead, we 
> should use Vector::append(const U* u, size_t size) in order to add all 
> obtained data.
> 
> I have added the test for this issue to LoadTest.java

Looks good to me, my basic sanity test is green.

-------------

Marked as reviewed by jbhaskar (Committer).

PR Review: https://git.openjdk.org/jfx/pull/1227#pullrequestreview-1604593776

Reply via email to