use newly available u8s_to_string

This commit is contained in:
Markus Triska
2022-09-03 21:25:19 +02:00
committed by Mark Thom
parent 9c2cb144b5
commit 579aa8acd4

View File

@@ -6635,13 +6635,9 @@ impl Machine {
}
let b64 = base64::encode_config(bytes, config);
let cstr = if b64.len() == 0 {
empty_list_as_cell!()
} else {
atom_as_cstr_cell!(self.machine_st.atom_tbl.build_with(&b64))
};
let string = self.u8s_to_string(&b64.as_bytes());
unify!(self.machine_st, self.machine_st.registers[2], cstr);
unify!(self.machine_st, self.machine_st.registers[2], string);
}
Ok(())