Created
April 19, 2014 20:04
-
-
Save tomthorogood/11095842 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int do_work(int* c) { | |
int i*; // This is never defined, and its value cannot be guaranteed. | |
int j = 42; // This is never used, but the programmer likely intended for it to be. | |
return c + *i; // Because i is never defined, this will likely be incorrect. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment