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
i've got a while loop with a condition that calls continue. when controlFlowFlattening is enabled (threshold is at 0.75) the condition is reached but continue does not appear to be called. the lines of code after are called instead of the loop restarting. I have also discovered this happening in a for loop elsewhere in my code.
while (link_it.next())
{
var pkt = link_it.value.getPacketFrom();
if (!pkt)
{
pkt = link_it.value.getPacketTo();
}
if (!pkt)
{
console.log('there is no packet');
continue;
}
console.log('packet is', pkt);
var src = pkt.src;
var dst = pkt.dst;
}
i've got a while loop with a condition that calls continue. when controlFlowFlattening is enabled (threshold is at 0.75) the condition is reached but continue does not appear to be called. the lines of code after are called instead of the loop restarting. I have also discovered this happening in a for loop elsewhere in my code.
the console shows:
here are my obfuscation options: