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 a lot of places you are doing something like this:
if (index > RBC_MESH_PACKET_POOL_SIZE)
return 0;
return g_packet_refs[index];
it should be index >= RBC_MESH_PACKET_POOL_SIZE
You should run a linting tool on your code an fix all these errors.