Skip to content

Instantly share code, notes, and snippets.

@eqdw
Created May 25, 2017 15:59
Show Gist options
  • Save eqdw/2fadb61c1a7baa319e988f3922e1b299 to your computer and use it in GitHub Desktop.
Save eqdw/2fadb61c1a7baa319e988f3922e1b299 to your computer and use it in GitHub Desktop.
void broken_function(char * string, size_t length) {
if(length >= 3 &&
string[0] == 'F' &&
string[1] == 'U' &&
string[2] == 'Z' &&
string[3] == 'Z') {
do_the_thing();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment