mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Auto merge of #12030 - servo:exit-now, r=Manishearth
Don't panic in LayoutThread::exit_now() if the paint thread is gone a… Fixes #11996. Fixes #12005. Fixes #12007. Fixes #12011. Fixes #12026. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12030) <!-- Reviewable:end -->
This commit is contained in:
commit
210265d30f
1 changed files with 1 additions and 1 deletions
|
@ -772,7 +772,7 @@ impl LayoutThread {
|
|||
traversal.shutdown()
|
||||
}
|
||||
|
||||
self.paint_chan.send(LayoutToPaintMsg::Exit).unwrap();
|
||||
let _ = self.paint_chan.send(LayoutToPaintMsg::Exit);
|
||||
}
|
||||
|
||||
fn handle_add_stylesheet<'a, 'b>(&self,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue