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/vco-plugins-0.3.0/blvco.h
Examining data/vco-plugins-0.3.0/ladspaplugin.h
Examining data/vco-plugins-0.3.0/ladspa.h
Examining data/vco-plugins-0.3.0/exp2ap.cc
Examining data/vco-plugins-0.3.0/blvco.cc
Examining data/vco-plugins-0.3.0/blvco_if.cc

FINAL RESULTS:

data/vco-plugins-0.3.0/blvco.cc:119:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy (_f, _f + FILLEN, NCOEFF * sizeof (float));
data/vco-plugins-0.3.0/blvco.cc:211:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy (_f, _f + FILLEN, NCOEFF * sizeof (float));
data/vco-plugins-0.3.0/blvco.cc:336:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy (_f, _f + FILLEN, NCOEFF * sizeof (float));
data/vco-plugins-0.3.0/blvco_if.cc:81:14:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static const char * const pname1  [Ladspa_VCO_pulse1::NPORT] = 
data/vco-plugins-0.3.0/blvco_if.cc:130:14:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static const char * const pname2  [Ladspa_VCO_saw1::NPORT] = 
data/vco-plugins-0.3.0/blvco_if.cc:181:14:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static const char * const pname3  [Ladspa_VCO_rec1::NPORT] = 

ANALYSIS SUMMARY:

Hits = 6
Lines analyzed = 1467 in approximately 0.05 seconds (28947 lines/second)
Physical Source Lines of Code (SLOC) = 714
Hits@level = [0]   0 [1]   0 [2]   6 [3]   0 [4]   0 [5]   0
Hits@level+ = [0+]   6 [1+]   6 [2+]   6 [3+]   0 [4+]   0 [5+]   0
Hits/KSLOC@level+ = [0+] 8.40336 [1+] 8.40336 [2+] 8.40336 [3+]   0 [4+]   0 [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.