1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 05:28:40 +00:00

fix(core/rust): fix "unnecessary unsafe" warning

[no changelog]
This commit is contained in:
matejcik 2021-09-13 15:45:00 +02:00 committed by Martin Milata
parent 31de21718f
commit 795ed2d339

View File

@ -38,12 +38,10 @@ pub extern "C" fn protobuf_encode(buf: Obj, obj: Obj) -> Obj {
util::try_or_raise(|| {
let obj = Gc::<MsgObj>::try_from(obj)?;
// We assume there are no other refs into `buf` at this point. This specifically
// means that no fields of `obj` should reference `buf` memory.
let buf = &mut BufferMut::try_from(buf)?;
let stream = &mut BufferStream::new(unsafe {
// SAFETY: We assume there are no other refs into `buf` at this point. This
// specifically means that no fields of `obj` should reference `buf` memory.
buf.as_mut()
});
let stream = &mut BufferStream::new(buf.as_mut());
Encoder.encode_message(stream, &obj.def(), &obj)?;