A loop with no possible exit condition was found.
This may be intentional or it could be a coding error.
ID |
Observation |
Description |
---|---|---|
1 |
Infinite loop |
The location of the infinite loop |
extern char * GetNextLine(); extern void ProcessNextLine(char *); int main(int argc, char **argv) { while (1) { ProcessNextLine( GetNextLine() ); } return 0; }
Copyright © 2010, Intel Corporation. All rights reserved.