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 load_networks(), the initial allocation has space for 50 network entries. When processing the 51st dictionary item, the code writes to networks[50] before checking whether the allocation needs to be expanded resulting in out of bounds write.
In
load_networks(), the initial allocation has space for 50 network entries. When processing the 51st dictionary item, the code writes to networks[50] before checking whether the allocation needs to be expanded resulting in out of bounds write.