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 implementation evaluates str.size() - pos without checking whether pos is < str.size() first, which may lead to an unsigned underflow followed by an out of bounds read.
The text was updated successfully, but these errors were encountered:
The implementation evaluates
str.size() - pos
without checking whetherpos
is <str.size()
first, which may lead to an unsigned underflow followed by an out of bounds read.The text was updated successfully, but these errors were encountered: