fix(headers): Remove raw part when getting mutable reference to typed header
If you get a mutable reference to a typed header it is possible to make the two representations be out of sync. To avoid this, after parsing the raw part it should be removed. Fixes #821.
This commit is contained in:
committed by
Sean McArthur
parent
43ac0dd095
commit
f38717e422
@@ -78,6 +78,9 @@ impl Item {
|
||||
Err(_) => ()
|
||||
}
|
||||
}
|
||||
if self.raw.is_some() && self.typed.get_mut(tid).is_some() {
|
||||
self.raw = OptCell::new(None);
|
||||
}
|
||||
self.typed.get_mut(tid).map(|typed| unsafe { typed.downcast_mut_unchecked() })
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user