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/gtkspell-2.0.16/gtkspell/gtkspell.h
Examining data/gtkspell-2.0.16/gtkspell/deprecated.c
Examining data/gtkspell-2.0.16/gtkspell/gtkspell.c
Examining data/gtkspell-2.0.16/examples/advanced.c
Examining data/gtkspell-2.0.16/examples/simple.c

FINAL RESULTS:

data/gtkspell-2.0.16/gtkspell/gtkspell.c:108:48:  [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).
		if (enchant_dict_check(spell->speller, text, strlen(text)) != 0)
data/gtkspell-2.0.16/gtkspell/gtkspell.c:280:42:  [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).
	enchant_dict_add( spell->speller, word, strlen(word));
data/gtkspell-2.0.16/gtkspell/gtkspell.c:295:52:  [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).
	enchant_dict_add_to_session(spell->speller, word, strlen(word));
data/gtkspell-2.0.16/gtkspell/gtkspell.c:327:13:  [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).
			oldword, strlen(oldword),
data/gtkspell-2.0.16/gtkspell/gtkspell.c:328:13:  [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).
			newword, strlen(newword));
data/gtkspell-2.0.16/gtkspell/gtkspell.c:350:59:  [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).
	suggestions = enchant_dict_suggest(spell->speller, word, strlen(word), &n_suggs);

ANALYSIS SUMMARY:

Hits = 6
Lines analyzed = 1116 in approximately 0.09 seconds (11954 lines/second)
Physical Source Lines of Code (SLOC) = 748
Hits@level = [0]   0 [1]   6 [2]   0 [3]   0 [4]   0 [5]   0
Hits@level+ = [0+]   6 [1+]   6 [2+]   0 [3+]   0 [4+]   0 [5+]   0
Hits/KSLOC@level+ = [0+] 8.02139 [1+] 8.02139 [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.