In the following code x clearly is used uninitialized #include <stdio.h> int main(void) { while (1) { int x; printf("x=%d\n", x); x = 0; } return 0; } Possibly dup of 82101 ?
I guess this prints 0. If so, then it is Infamous 18501. Those are easy to recognize because there is an assignment to the uninitialized variable after the uninitialized use. *** This bug has been marked as a duplicate of bug 18501 ***