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
The use of Vec::from_raw_parts usage, in this case, is not safe the as the data is not allocated by the same allocator. Dropping this Vec may corrupt the internal data structures of the allocator.
Problem 1
The use of
Vec::from_raw_parts
usage, in this case, is not safe the as the data is not allocated by the same allocator. Dropping thisVec
may corrupt the internal data structures of the allocator.Proposed solution
The text was updated successfully, but these errors were encountered: