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
Fix (A)Rc<[T]> trying to allocate RcBox larger than isize::MAX bytes
Due to ptr::add restrictions allocations must be <= isize::MAX bytes. The default implementation goes
through Vec which ensures this, but the uninit and TrustedLen code paths lack the necessary check.
0 commit comments