mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:27:35 +00:00
LibWeb: Explicitly mark HashMap copy
This commit is contained in:
parent
5cfa883b9f
commit
12d1ddbde5
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ void Resource::did_load(Badge<ResourceLoader>, ReadonlyBytes data, HashMap<Depre
|
|||
VERIFY(!m_loaded);
|
||||
// FIXME: Handle OOM failure.
|
||||
m_encoded_data = ByteBuffer::copy(data).release_value_but_fixme_should_propagate_errors();
|
||||
m_response_headers = headers;
|
||||
m_response_headers = headers.clone().release_value_but_fixme_should_propagate_errors();
|
||||
m_status_code = move(status_code);
|
||||
m_loaded = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue