Menu

#8 Does not handle for(;;)

v1.0_(example)
open
nobody
None
5
2013-01-09
2004-12-07
No

The Instrumentation added to an empty for (e.g. for
(;;) {} ) loop is as follows:

for(;&& <some instrumentation>;) {}

this causes a build failure on instrumented code.
The work around is to simply change your original
code to the following:

for (;true;) {}

Discussion


Log in to post a comment.