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
There's a related issue: indexes aren't checked on reading either. So you can get a C++ style out of bounds read when reading lists! This is not intuitive.
When using a StructList the size is not checked when adding new entries.
For example:
Will give no error or exception but the data is not written.
Or worste if you have a bit of space:
You get the following:
So your data is destroyed.
In both cases I would expect an exception.
The text was updated successfully, but these errors were encountered: