Integrated: 8311097: Synchron XMLHttpRequest not receiving data

Andrew Brygin bae at openjdk.org
Fri Sep 1 09:34:49 UTC 2023


On Wed, 30 Aug 2023 14:32:37 GMT, Andrew Brygin <bae at 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

This pull request has now been integrated.

Changeset: 82f27748
Author:    Andrew Brygin <bae at openjdk.org>
Committer: Dmitry Cherepanov <dcherepanov at openjdk.org>
URL:       https://git.openjdk.org/jfx/commit/82f2774895b41ce81215012556483b1519495d5d
Stats:     52 lines in 4 files changed: 50 ins; 1 del; 1 mod

8311097: Synchron XMLHttpRequest not receiving data

Reviewed-by: jbhaskar, kcr

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

PR: https://git.openjdk.org/jfx/pull/1227


More information about the openjfx-dev mailing list