Skip to content

Instantly share code, notes, and snippets.

@Const-me
Created June 11, 2019 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Const-me/dcdc40b206fe41ba200fa46b2e118fd8 to your computer and use it in GitHub Desktop.
Save Const-me/dcdc40b206fe41ba200fa46b2e118fd8 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
// Invalid 2 octet sequence: https://stackoverflow.com/a/3886015/126995
FILE* f = fopen( "/home/kosta/\xc3\x28", "w" );
fclose( f );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment