mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 23:38:12 +00:00
LibCore+RequestServer: Ignore callbacks for cancelled network jobs
Also cancel the jobs when they're destroyed. This makes sure that jobs whose owners have discarded don't end up crashing because of a did_fail().
This commit is contained in:
parent
436693c0c9
commit
81a0301d4d
4 changed files with 12 additions and 3 deletions
|
@ -29,6 +29,9 @@ void NetworkJob::shutdown()
|
|||
|
||||
void NetworkJob::did_finish(NonnullRefPtr<NetworkResponse>&& response)
|
||||
{
|
||||
if (is_cancelled())
|
||||
return;
|
||||
|
||||
// NOTE: We protect ourselves here, since the on_finish callback may otherwise
|
||||
// trigger destruction of this job somehow.
|
||||
NonnullRefPtr<NetworkJob> protector(*this);
|
||||
|
@ -42,6 +45,9 @@ void NetworkJob::did_finish(NonnullRefPtr<NetworkResponse>&& response)
|
|||
|
||||
void NetworkJob::did_fail(Error error)
|
||||
{
|
||||
if (is_cancelled())
|
||||
return;
|
||||
|
||||
// NOTE: We protect ourselves here, since the on_finish callback may otherwise
|
||||
// trigger destruction of this job somehow.
|
||||
NonnullRefPtr<NetworkJob> protector(*this);
|
||||
|
@ -55,6 +61,9 @@ void NetworkJob::did_fail(Error error)
|
|||
|
||||
void NetworkJob::did_progress(Optional<u32> total_size, u32 downloaded)
|
||||
{
|
||||
if (is_cancelled())
|
||||
return;
|
||||
|
||||
// NOTE: We protect ourselves here, since the callback may otherwise
|
||||
// trigger destruction of this job somehow.
|
||||
NonnullRefPtr<NetworkJob> protector(*this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue