mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 12:35:14 +00:00
LibCore: Have CNetworkJob protect itself during the on_finish callback
Otherwise, the callback may trigger the destruction of the CNetworkJob and make it difficult to continue execution correctly.
This commit is contained in:
parent
5d8324f133
commit
20c957ef61
Notes:
sideshowbarker
2024-07-19 11:06:16 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/20c957ef610
1 changed files with 8 additions and 0 deletions
|
@ -14,6 +14,10 @@ CNetworkJob::~CNetworkJob()
|
|||
|
||||
void CNetworkJob::did_finish(NonnullRefPtr<CNetworkResponse>&& response)
|
||||
{
|
||||
// NOTE: We protect ourselves here, since the on_finish callback may otherwise
|
||||
// trigger destruction of this job somehow.
|
||||
NonnullRefPtr<CNetworkJob> protector(*this);
|
||||
|
||||
m_response = move(response);
|
||||
#ifdef CNETWORKJOB_DEBUG
|
||||
dbg() << *this << " job did_finish!";
|
||||
|
@ -25,6 +29,10 @@ void CNetworkJob::did_finish(NonnullRefPtr<CNetworkResponse>&& response)
|
|||
|
||||
void CNetworkJob::did_fail(Error error)
|
||||
{
|
||||
// NOTE: We protect ourselves here, since the on_finish callback may otherwise
|
||||
// trigger destruction of this job somehow.
|
||||
NonnullRefPtr<CNetworkJob> protector(*this);
|
||||
|
||||
m_error = error;
|
||||
#ifdef CNETWORKJOB_DEBUG
|
||||
dbgprintf("%s{%p} job did_fail! error: %u (%s)\n", class_name(), this, (unsigned)error, to_string(error));
|
||||
|
|
Loading…
Add table
Reference in a new issue