Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler.
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
Examining data/haskell-openglraw-3.3.4.0/cbits/HsOpenGLRaw.c

FINAL RESULTS:

data/haskell-openglraw-3.3.4.0/cbits/HsOpenGLRaw.c:59:3:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
  strcpy(symbolName + 1, name);
data/haskell-openglraw-3.3.4.0/cbits/HsOpenGLRaw.c:26:14:  [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current directory
  may be used (CWE-829, CWE-20). Use registry entry or GetWindowsDirectory to
  find library path, if you aren't already.
    handle = LoadLibrary(TEXT("opengl32"));
data/haskell-openglraw-3.3.4.0/cbits/HsOpenGLRaw.c:54:36:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  char* symbolName = (char*)malloc(strlen(name) + 2);

ANALYSIS SUMMARY:

Hits = 3
Lines analyzed = 153 in approximately 0.15 seconds (998 lines/second)
Physical Source Lines of Code (SLOC) = 95
Hits@level = [0]   0 [1]   1 [2]   0 [3]   1 [4]   1 [5]   0
Hits@level+ = [0+]   3 [1+]   3 [2+]   2 [3+]   2 [4+]   1 [5+]   0
Hits/KSLOC@level+ = [0+] 31.5789 [1+] 31.5789 [2+] 21.0526 [3+] 21.0526 [4+] 10.5263 [5+]   0
Dot directories skipped = 1 (--followdotdir overrides)
Minimum risk level = 1
Not every hit is necessarily a security vulnerability.
There may be other security vulnerabilities; review your code!
See 'Secure Programming HOWTO'
(https://dwheeler.com/secure-programs) for more information.