You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let extended_buf:&'a[u8] = unsafe{ std::mem::transmute(*buf)};
found here is written under the unproven assumption that buf will live long enough. It returns a value which borrows buf for 'a. However, buf is not guaranteed to outlive 'a.
This should be fixed as soon as possible, and the current version (as well as any other affected versions) should be yanked.
The text was updated successfully, but these errors were encountered:
The following line:
found here is written under the unproven assumption that
buf
will live long enough. It returns a value which borrowsbuf
for'a
. However,buf
is not guaranteed to outlive'a
.This should be fixed as soon as possible, and the current version (as well as any other affected versions) should be yanked.
The text was updated successfully, but these errors were encountered: