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/thunar-media-tags-plugin-0.3.0/thunar-plugin/audio-tags-page.h
Examining data/thunar-media-tags-plugin-0.3.0/thunar-plugin/media-tags-provider.h
Examining data/thunar-media-tags-plugin-0.3.0/thunar-plugin/tag-renamer.c
Examining data/thunar-media-tags-plugin-0.3.0/thunar-plugin/media-tags-provider.c
Examining data/thunar-media-tags-plugin-0.3.0/thunar-plugin/media-tags-plugin.c
Examining data/thunar-media-tags-plugin-0.3.0/thunar-plugin/audio-tags-page.c
Examining data/thunar-media-tags-plugin-0.3.0/thunar-plugin/tag-renamer.h

FINAL RESULTS:

data/thunar-media-tags-plugin-0.3.0/thunar-plugin/media-tags-plugin.c:47:16:  [1] (buffer) mismatch:
  Function does not check the second iterator for over-read conditions
  (CWE-126). This function is often discouraged by most C++ coding standards
  in favor of its safer alternatives provided since C++14. Consider using a
  form of this function that checks the second iterator before potentially
  overflowing it.
  const gchar *mismatch;
data/thunar-media-tags-plugin-0.3.0/thunar-plugin/media-tags-plugin.c:51:19:  [1] (buffer) mismatch:
  Function does not check the second iterator for over-read conditions
  (CWE-126). This function is often discouraged by most C++ coding standards
  in favor of its safer alternatives provided since C++14. Consider using a
  form of this function that checks the second iterator before potentially
  overflowing it.
  if (G_UNLIKELY (mismatch != NULL))
data/thunar-media-tags-plugin-0.3.0/thunar-plugin/media-tags-plugin.c:53:42:  [1] (buffer) mismatch:
  Function does not check the second iterator for over-read conditions
  (CWE-126). This function is often discouraged by most C++ coding standards
  in favor of its safer alternatives provided since C++14. Consider using a
  form of this function that checks the second iterator before potentially
  overflowing it.
      g_warning ("Version mismatch: %s", mismatch);

ANALYSIS SUMMARY:

Hits = 3
Lines analyzed = 2595 in approximately 0.07 seconds (38642 lines/second)
Physical Source Lines of Code (SLOC) = 1564
Hits@level = [0]   0 [1]   3 [2]   0 [3]   0 [4]   0 [5]   0
Hits@level+ = [0+]   3 [1+]   3 [2+]   0 [3+]   0 [4+]   0 [5+]   0
Hits/KSLOC@level+ = [0+] 1.91816 [1+] 1.91816 [2+]   0 [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.