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/autorandr-1.11/contrib/autorandr_launcher/autorandr_launcher.c

FINAL RESULTS:

data/autorandr-1.11/contrib/autorandr_launcher/autorandr_launcher.c:31:2:  [4] (format) vprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
	vprintf(format, args);
data/autorandr-1.11/contrib/autorandr_launcher/autorandr_launcher.c:78:8:  [3] (buffer) getopt_long:
  Some older implementations do not protect against internal buffer overflows
  (CWE-120, CWE-20). Check implementation on installation, or limit the size
  of all string inputs.
		ch = getopt_long(argc, argv, short_options, long_options,

ANALYSIS SUMMARY:

Hits = 2
Lines analyzed = 172 in approximately 0.02 seconds (11453 lines/second)
Physical Source Lines of Code (SLOC) = 141
Hits@level = [0]   4 [1]   0 [2]   0 [3]   1 [4]   1 [5]   0
Hits@level+ = [0+]   6 [1+]   2 [2+]   2 [3+]   2 [4+]   1 [5+]   0
Hits/KSLOC@level+ = [0+] 42.5532 [1+] 14.1844 [2+] 14.1844 [3+] 14.1844 [4+] 7.0922 [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.