mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Don't panic if file manager thread is unreachable when cleaning up Blobs.
This commit is contained in:
parent
7a570a7322
commit
9e18166550
1 changed files with 1 additions and 1 deletions
|
@ -296,7 +296,7 @@ impl Blob {
|
|||
|
||||
let msg = FileManagerThreadMsg::DecRef(f.id.clone(), origin, tx);
|
||||
self.send_to_file_manager(msg);
|
||||
let _ = rx.recv().unwrap();
|
||||
let _ = rx.recv();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue