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 following line if (ptr[i][x + j] == 0) there are outbound reads:
for example the loop runs with i=0, x= 0 and j=-2
In this function there is something seriously wrong. A 3-nested loop is used to scan a vector of 5 elements and from time to time the x paramenter in the function gets values that are far away too high ( e.g. 614).
The text was updated successfully, but these errors were encountered:
In the following line if (ptr[i][x + j] == 0) there are outbound reads:
for example the loop runs with i=0, x= 0 and j=-2
In this function there is something seriously wrong. A 3-nested loop is used to scan a vector of 5 elements and from time to time the x paramenter in the function gets values that are far away too high ( e.g. 614).
The text was updated successfully, but these errors were encountered: