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
In the API malloc_ex()free_ex()realloc_ex() taking address with &tlsf->fl_bitmap yields a singleton pointer and passing &tlsf->fl_bitmap to function set_bit which uses it as an array. This might corrupt or misinterpret adjacent memory locations. Out-of-bounds access that memory not owned by this buffer will be accessed, causing memory corruption or incorrect computations.
The text was updated successfully, but these errors were encountered:
tlsf is a third party package that we don't modify. Please report issues on the upstream repository.
Maybe a new version of this package has been released and, if so, we could consider importing a newer version
In the API malloc_ex() free_ex() realloc_ex() taking address with
&tlsf->fl_bitmap
yields a singleton pointer and passing&tlsf->fl_bitmap
to functionset_bit
which uses it as an array. This might corrupt or misinterpret adjacent memory locations. Out-of-bounds access that memory not owned by this buffer will be accessed, causing memory corruption or incorrect computations.The text was updated successfully, but these errors were encountered: