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
Fixing possible overflow in BoundFunction::NewInstance.
Not sure if the possibility is practically reachable, but the static checker complains about a possible overflow.
We allocate an extra element in `newValues` based only only on `CallFlags_ExtraArg` flag. Therefore we should be consistent when writing to that element.
`args.HasExtraArg` looks at more flags and, in theory, could result in writing to an element that does not exist. That seems to be making OACR unhappy.
Fixes: OS:#17999665
Fixes: OS:#18010300
0 commit comments