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/bs2b-ladspa-0.9.1/src/plugin.c

FINAL RESULTS:

data/bs2b-ladspa-0.9.1/src/plugin.c:273:5:  [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
				snprintf(finalName, finalLen + 1, version_format,
data/bs2b-ladspa-0.9.1/src/plugin.c:267:26:  [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).
			const int formatLen = strlen(version_format);
data/bs2b-ladspa-0.9.1/src/plugin.c:268:31:  [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).
			const int bs2bVersionLen = strlen(bs2b_runtime_version());

ANALYSIS SUMMARY:

Hits = 3
Lines analyzed = 377 in approximately 0.05 seconds (7795 lines/second)
Physical Source Lines of Code (SLOC) = 255
Hits@level = [0]   0 [1]   2 [2]   0 [3]   0 [4]   1 [5]   0
Hits@level+ = [0+]   3 [1+]   3 [2+]   1 [3+]   1 [4+]   1 [5+]   0
Hits/KSLOC@level+ = [0+] 11.7647 [1+] 11.7647 [2+] 3.92157 [3+] 3.92157 [4+] 3.92157 [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.