mirror of
https://github.com/servo/servo.git
synced 2025-08-09 07:25:35 +01:00
Fix level-of-indirection problem in url
This commit is contained in:
parent
b24822e939
commit
f1b2463d48
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ impl ImageCache {
|
||||||
}
|
}
|
||||||
|
|
||||||
priv fn purge_waiters(url: Url, f: fn() -> ImageResponseMsg) {
|
priv fn purge_waiters(url: Url, f: fn() -> ImageResponseMsg) {
|
||||||
match self.wait_map.find(copy url) {
|
match self.wait_map.find(&url) {
|
||||||
Some(waiters) => {
|
Some(waiters) => {
|
||||||
let waiters = &mut *waiters;
|
let waiters = &mut *waiters;
|
||||||
let mut new_waiters = ~[];
|
let mut new_waiters = ~[];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue