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
Resizing to an empty array crashes as it does not set the dimension to NULL as it should and allocates dimension memory with RENEW and not via the cache. The cache assumes all memory it receives has at least 16 bytes so when this empty pointer lands in the cache it causes out of bound errors.
0d arrays have NULL for stride and dimension, PyArray_Resize assigns
it a valid pointer from RENEW which when passed back to the allocation
cache does not have the minimum size of 16 bytes it requires leading to
out of bound accesses.
Closesnumpygh-9216
0d arrays have NULL for stride and dimension, PyArray_Resize assigns
it a valid pointer from RENEW which when passed back to the allocation
cache does not have the minimum size of 16 bytes it requires leading to
out of bound accesses.
Closesnumpygh-9216
Resizing to an empty array crashes as it does not set the dimension to
NULL
as it should and allocates dimension memory with RENEW and not via the cache. The cache assumes all memory it receives has at least 16 bytes so when this empty pointer lands in the cache it causes out of bound errors.The text was updated successfully, but these errors were encountered: