diff --git a/flawtest.c b/flawtest.c deleted file mode 100644 index 6c44640..0000000 --- a/flawtest.c +++ /dev/null @@ -1,26 +0,0 @@ - -/* Test flawfinder. This program won't compile or run; that's not necessary - for this to be a useful test. */ - -main() { - char d[20]; - char s[20]; - int n; - - _mbscpy(d,s); /* like strcpy, this doesn't check for buffer overflow */ - memcpy(d,s); - CopyMemory(d,s); - lstrcat(d,s); - strncpy(d,s); - _tcsncpy(d,s); - strncat(d,s,10); - strncat(d,s,sizeof(d)); /* Misuse - this should be flagged as riskier. */ - _tcsncat(d,s,sizeof(d)); /* Misuse - flag as riskier */ - n = strlen(d); - /* This is wrong, and should be flagged as risky: */ - MultiByteToWideChar(CP_ACP,0,szName,-1,wszUserName,sizeof(wszUserName)); - /* This is much better: */ - MultiByteToWideChar(CP_ACP,0,szName,-1,wszUserName,sizeof(wszUserName)/sizeof(wszUserName[0])); -} - - diff --git a/junk.c b/junk.c deleted file mode 100644 index 5b005a1..0000000 --- a/junk.c +++ /dev/null @@ -1,10 +0,0 @@ - -#include - -main() { - char abuf[1000]; - FILE *FR = stdin; - fscanf(FR, "%2000s", abuf); - printf("Result = %s\n", abuf); - strcpy(new,old); -} diff --git a/sloctest.c b/sloctest.c deleted file mode 100644 index c3b2e64..0000000 --- a/sloctest.c +++ /dev/null @@ -1,9 +0,0 @@ -/* This is a test. Should produce 6 SLOC. - */ -#include -#define HI 10 - -main() { - a = 1; /* hi */ - "hi" -}