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-readanysf-0.43/src/FifoVideoFrames.cpp
Examining data/pd-readanysf-0.43/src/FifoAudioFrames.cpp
Examining data/pd-readanysf-0.43/src/readanysf~.cpp
Examining data/pd-readanysf-0.43/src/FifoVideoFrames.h
Examining data/pd-readanysf-0.43/src/FifoAudioFrames.h
Examining data/pd-readanysf-0.43/src/ReadMedia.cpp
Examining data/pd-readanysf-0.43/src/ReadMedia.h

FINAL RESULTS:

data/pd-readanysf-0.43/src/ReadMedia.cpp:386:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(m_filename, "%s", fn);
data/pd-readanysf-0.43/src/ReadMedia.cpp:962:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		sprintf(rm->getFilename(), "%s", bgav_redirector_get_url(rm->getFile(), 0) );
data/pd-readanysf-0.43/src/ReadMedia.cpp:89:2:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
	sprintf(m_filename, "seinettbitte!");
data/pd-readanysf-0.43/src/ReadMedia.cpp:704:2:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
	sprintf(m_filename, "seinettbitte!");
data/pd-readanysf-0.43/src/ReadMedia.h:195:3:  [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.
		char m_filename[1024];

ANALYSIS SUMMARY:

Hits = 5
Lines analyzed = 2398 in approximately 0.07 seconds (32770 lines/second)
Physical Source Lines of Code (SLOC) = 1601
Hits@level = [0]  23 [1]   0 [2]   3 [3]   0 [4]   2 [5]   0
Hits@level+ = [0+]  28 [1+]   5 [2+]   5 [3+]   2 [4+]   2 [5+]   0
Hits/KSLOC@level+ = [0+] 17.4891 [1+] 3.12305 [2+] 3.12305 [3+] 1.24922 [4+] 1.24922 [5+]   0
Dot directories skipped = 3 (--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.