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
glib: Fix overflow in StrV::extend_from_slice when checking capacity
The left hand side of the condition `self.len + other.len() + 1 <= self.
capacity` could overflow and wrap around if `other` contained a large
number of elements, causing it to proceed to the copying code without
calling `reserve`.
0 commit comments