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/pd-flite-0.02.3/common/mooPdUtils.h
Examining data/pd-flite-0.02.3/flite.c

FINAL RESULTS:

data/pd-flite-0.02.3/flite.c:175:7:  [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(x->textbuf+buffered, asym->s_name);
data/pd-flite-0.02.3/flite.c:179:7:  [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(x->textbuf+buffered+1, asym->s_name);
data/pd-flite-0.02.3/flite.c:160:14:  [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).
    alen = 1+strlen(asym->s_name);

ANALYSIS SUMMARY:

Hits = 3
Lines analyzed = 291 in approximately 0.02 seconds (17213 lines/second)
Physical Source Lines of Code (SLOC) = 166
Hits@level = [0]   0 [1]   1 [2]   0 [3]   0 [4]   2 [5]   0
Hits@level+ = [0+]   3 [1+]   3 [2+]   2 [3+]   2 [4+]   2 [5+]   0
Hits/KSLOC@level+ = [0+] 18.0723 [1+] 18.0723 [2+] 12.0482 [3+] 12.0482 [4+] 12.0482 [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.