-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
controlFlowFlattening seems to ignore continue in while or for loop #71
Comments
Thank you for bug report. I will see into this tomorrow. |
as expected, with a lower threshold sometimes it happens and sometimes not. when threshold is set to 1 it always happens. |
I know why this happens. When obfuscator using one of type of control flow flattening - he skiping all statements with |
Previous comment was wrong, problem was in other place, but looks like i fixed it. |
Hi. Check new beta I'll release stable version later today. |
thanks! |
0.10.0 is out! |
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:
The text was updated successfully, but these errors were encountered: