1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-04 02:24:12 +02:00

handle malformed utf8 in names and cvars

This commit is contained in:
Robin Appelman 2019-05-25 23:53:44 +02:00
commit d12cf35e47
9 changed files with 41 additions and 13 deletions

View file

@ -130,11 +130,3 @@ pub struct CmdKeyValuesMessage {
}
impl BitSkip<LittleEndian> for CmdKeyValuesMessage{}
#[derive(BitRead, Debug)]
pub struct SetConVarMessage {
#[size_bits = 8]
vars: HashMap<String, String>,
}
impl BitSkip<LittleEndian> for SetConVarMessage{}