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
Currently nested loops are handled in isolation - for each of them guard limit is calculated separately. This should be fixed, for each nested loop guard limit should be multiplied, e.g.
uint8_t acc[20];
for (int i = 0; _g(__LINE__, 11), i < 10; ++i)
{
for (int j = 0; _g(__LINE__, 30), j < 2; ++j)
{
for (int k = 0; _g(__LINE__, 120), k < 5; ++k)
{
hook_account(acc, 20);
}
for (int k = 0; _g(__LINE__, 120), k < 5; ++k)
{
hook_account(acc, 20);
}
}
}
The text was updated successfully, but these errors were encountered:
Currently nested loops are handled in isolation - for each of them guard limit is calculated separately. This should be fixed, for each nested loop guard limit should be multiplied, e.g.
The text was updated successfully, but these errors were encountered: