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
ASan can be taught to understand the concept of an access to a contiguous container that is in a valid region of memory but not in a valid region of the container.
would not result in an ASan exception as things stand. However, we can add annotations to the ASan shadow memory using __sanitizer_annotate_contiguous_container which will allow ASan to detect the invalid access.
The text was updated successfully, but these errors were encountered:
ASan can be taught to understand the concept of an access to a contiguous container that is in a valid region of memory but not in a valid region of the container.
e.g.
would not result in an ASan exception as things stand. However, we can add annotations to the ASan shadow memory using
__sanitizer_annotate_contiguous_container
which will allow ASan to detect the invalid access.The text was updated successfully, but these errors were encountered: