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/goobox-3.6.0/src/album-info.c
Examining data/goobox-3.6.0/src/album-info.h
Examining data/goobox-3.6.0/src/dlg-cover-chooser.c
Examining data/goobox-3.6.0/src/dlg-cover-chooser.h
Examining data/goobox-3.6.0/src/dlg-extract.c
Examining data/goobox-3.6.0/src/dlg-extract.h
Examining data/goobox-3.6.0/src/dlg-preferences.c
Examining data/goobox-3.6.0/src/dlg-preferences.h
Examining data/goobox-3.6.0/src/dlg-properties.c
Examining data/goobox-3.6.0/src/dlg-properties.h
Examining data/goobox-3.6.0/src/dlg-ripper.c
Examining data/goobox-3.6.0/src/dlg-ripper.h
Examining data/goobox-3.6.0/src/gio-utils.c
Examining data/goobox-3.6.0/src/gio-utils.h
Examining data/goobox-3.6.0/src/glib-utils.c
Examining data/goobox-3.6.0/src/glib-utils.h
Examining data/goobox-3.6.0/src/gnome-desktop-thumbnail.c
Examining data/goobox-3.6.0/src/gnome-desktop-thumbnail.h
Examining data/goobox-3.6.0/src/gnome-thumbnail-pixbuf-utils.c
Examining data/goobox-3.6.0/src/goo-application-actions-callbacks.c
Examining data/goobox-3.6.0/src/goo-application-actions-callbacks.h
Examining data/goobox-3.6.0/src/goo-application-actions-entries.h
Examining data/goobox-3.6.0/src/goo-application.c
Examining data/goobox-3.6.0/src/goo-application.h
Examining data/goobox-3.6.0/src/goo-error.c
Examining data/goobox-3.6.0/src/goo-error.h
Examining data/goobox-3.6.0/src/goo-player-info.c
Examining data/goobox-3.6.0/src/goo-player-info.h
Examining data/goobox-3.6.0/src/goo-player-progress.c
Examining data/goobox-3.6.0/src/goo-player-progress.h
Examining data/goobox-3.6.0/src/goo-player.c
Examining data/goobox-3.6.0/src/goo-player.h
Examining data/goobox-3.6.0/src/goo-window-actions-callbacks.c
Examining data/goobox-3.6.0/src/goo-window-actions-callbacks.h
Examining data/goobox-3.6.0/src/goo-window-actions-entries.h
Examining data/goobox-3.6.0/src/goo-window.c
Examining data/goobox-3.6.0/src/goo-window.h
Examining data/goobox-3.6.0/src/gth-user-dir.c
Examining data/goobox-3.6.0/src/gth-user-dir.h
Examining data/goobox-3.6.0/src/gtk-file-chooser-preview.c
Examining data/goobox-3.6.0/src/gtk-file-chooser-preview.h
Examining data/goobox-3.6.0/src/gtk-utils.c
Examining data/goobox-3.6.0/src/gtk-utils.h
Examining data/goobox-3.6.0/src/main.c
Examining data/goobox-3.6.0/src/main.h
Examining data/goobox-3.6.0/src/metadata.c
Examining data/goobox-3.6.0/src/metadata.h
Examining data/goobox-3.6.0/src/preferences.h
Examining data/goobox-3.6.0/src/track-info.c
Examining data/goobox-3.6.0/src/track-info.h
Examining data/goobox-3.6.0/src/typedefs.h

FINAL RESULTS:

data/goobox-3.6.0/src/dlg-ripper.c:554:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			sprintf (buffer, "File%d=%s\n", n, unescaped);
data/goobox-3.6.0/src/dlg-ripper.c:560:4:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
			sprintf (buffer, "Title%d=%s - %s\n", n, data->album->artist, track->title);
data/goobox-3.6.0/src/glib-utils.c:325:2:  [4] (race) access:
  This usually indicates a security flaw. If an attacker can change anything
  along the path between the call to access() and the file's actual use
  (e.g., by moving files), the attacker can exploit the race condition
  (CWE-362/CWE-367!). Set up the correct permissions (e.g., using setuid())
  and try to open the file directly.
	access (str, F_OK);
data/goobox-3.6.0/src/dlg-preferences.c:241:36:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
		destination = g_filename_to_uri (g_get_home_dir (), NULL, NULL);
data/goobox-3.6.0/src/dlg-ripper.c:754:42:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
		data->destination = g_filename_to_uri (g_get_home_dir (), NULL, NULL);
data/goobox-3.6.0/src/glib-utils.c:990:19:  [3] (random) g_rand_int_range:
  This function is not sufficiently random for security-related functions
  such as key and nonce creation (CWE-327). Use a more secure technique for
  acquiring random values.
		s[i] = alphabet[g_rand_int_range (rand_gen, 0, (i == 0) ? letters_only : whole_alphabet)];
data/goobox-3.6.0/src/glib-utils.c:1137:10:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
		path = g_get_home_dir ();
data/goobox-3.6.0/src/glib-utils.c:2197:26:  [3] (buffer) g_get_tmp_dir:
  This function is synonymous with 'getenv("TMP")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
	template = g_strconcat (g_get_tmp_dir (), "/goobox-XXXXXX", NULL);
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:838:28:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
  path = g_build_filename (g_get_home_dir (),
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:899:28:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
  path = g_build_filename (g_get_home_dir (),
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1241:37:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
  thumbnail_dir = g_build_filename (g_get_home_dir (),
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1275:37:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
  thumbnail_dir = g_build_filename (g_get_home_dir (),
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1349:28:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
  path = g_build_filename (g_get_home_dir (),
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1453:28:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
  path = g_build_filename (g_get_home_dir (),
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1544:28:  [3] (buffer) g_get_home_dir:
  This function is synonymous with 'getenv("HOME")';it returns untrustable
  input if the environment can beset by an attacker. It can have any content
  and length, and the same variable can be set more than once (CWE-807,
  CWE-20). Check environment variables carefully before using them.
  path = g_build_filename (g_get_home_dir (),
data/goobox-3.6.0/src/goo-window.c:729:11:  [3] (random) g_rand_int_range:
  This function is not sufficiently random for security-related functions
  such as key and nonce creation (CWE-327). Use a more secure technique for
  acquiring random values.
				pos = g_rand_int_range (grand, 0, len--);
data/goobox-3.6.0/src/album-info.c:419: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 s[64];
data/goobox-3.6.0/src/dlg-cover-chooser.c:78:2:  [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          buf[BUFFER_SIZE];
data/goobox-3.6.0/src/dlg-cover-chooser.c:763:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy (data->buffer, caa_imagedata_data (image_data), data->size);
data/goobox-3.6.0/src/dlg-ripper.c:484:16:  [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.
        static char  s[1024];
data/goobox-3.6.0/src/dlg-ripper.c:487:9:  [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 (s, "%2d", n);
data/goobox-3.6.0/src/dlg-ripper.c:531: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   buffer[BUFFER_SIZE];
data/goobox-3.6.0/src/dlg-ripper.c:535:3:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
		strcpy (buffer, "[playlist]\n");
data/goobox-3.6.0/src/dlg-ripper.c:538:3:  [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 (buffer, "NumberOfEntries=%d\n", data->n_tracks);
data/goobox-3.6.0/src/dlg-ripper.c:541:3:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
		strcpy (buffer, "Version=2\n");
data/goobox-3.6.0/src/dlg-ripper.c:563:4:  [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 (buffer, "Length%d=%d\n", n, track->min * 60 + track->sec);
data/goobox-3.6.0/src/gio-utils.c:44:2:  [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              tmp_buffer[BUFFER_SIZE];
data/goobox-3.6.0/src/gio-utils.c:68:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy (local_buffer + count, tmp_buffer, n);
data/goobox-3.6.0/src/gio-utils.c:124:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy (load_data->buffer + load_data->count, load_data->tmp_buffer, count);
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:307:5:  [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 buffer[LOAD_BUFFER_SIZE];
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1115: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 dimension[12];
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1335: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 mtime_str[21];
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1438: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 mtime_str[21];
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1610:17:  [2] (integer) atol:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). If source untrusted, check both minimum and maximum, even if the
  input had no minus sign (large numbers can roll over into negative number;
  consider saving to an unsigned value if that is intended).
  thumb_mtime = atol (thumb_mtime_str);
data/goobox-3.6.0/src/goo-player-info.c:58:2:  [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         time[64];
data/goobox-3.6.0/src/goo-player-info.c:442:4:  [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 year[128];
data/goobox-3.6.0/src/goo-player-info.c:447:5:  [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 (year, "%u", g_date_get_year (album->release_date));
data/goobox-3.6.0/src/gtk-utils.c:932:8:  [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.
	const char *accels[2];
data/goobox-3.6.0/src/metadata.c:247: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          release_id[256];
data/goobox-3.6.0/src/dlg-cover-chooser.c:91:28:  [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).
		int         prefix_len = strlen (prefix);
data/goobox-3.6.0/src/dlg-cover-chooser.c:149:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
			strncpy (buf,
data/goobox-3.6.0/src/dlg-ripper.c:365: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).
	filename = g_new (char, strlen (trackname) + 1);
data/goobox-3.6.0/src/dlg-ripper.c:536: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).
		g_output_stream_write (stream, buffer, strlen (buffer), NULL, NULL);
data/goobox-3.6.0/src/dlg-ripper.c:539: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).
		g_output_stream_write (stream, buffer, strlen (buffer), NULL, NULL);
data/goobox-3.6.0/src/dlg-ripper.c:542: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).
		g_output_stream_write (stream, buffer, strlen (buffer), NULL, NULL);
data/goobox-3.6.0/src/dlg-ripper.c:555:43:  [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).
			g_output_stream_write (stream, buffer, strlen (buffer), NULL, NULL);
data/goobox-3.6.0/src/dlg-ripper.c:561:43:  [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).
			g_output_stream_write (stream, buffer, strlen (buffer), NULL, NULL);
data/goobox-3.6.0/src/dlg-ripper.c:564:43:  [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).
			g_output_stream_write (stream, buffer, strlen (buffer), NULL, NULL);
data/goobox-3.6.0/src/glib-utils.c:533:12:  [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).
	int   l = strlen (s);
data/goobox-3.6.0/src/glib-utils.c:645:14:  [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).
			s_n_len = strlen (s_n);
data/goobox-3.6.0/src/glib-utils.c:794:28:  [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).
	int         needle_size = strlen (needle);
data/goobox-3.6.0/src/glib-utils.c:828: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).
		gsize delimiter_size = strlen (delimiter);
data/goobox-3.6.0/src/glib-utils.c:835:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
			strncpy (new_string, remainder, size);
data/goobox-3.6.0/src/glib-utils.c:1025:10:  [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).
	s_len = strlen (s);
data/goobox-3.6.0/src/glib-utils.c:1026:15:  [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).
	suffix_len = strlen (suffix);
data/goobox-3.6.0/src/glib-utils.c:1283:14:  [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).
	last_char = strlen (uri) - 1;
data/goobox-3.6.0/src/glib-utils.c:1306:8:  [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).
	len = strlen (uri);
data/goobox-3.6.0/src/glib-utils.c:1376:14:  [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).
	dirname_l = strlen (dirname);
data/goobox-3.6.0/src/glib-utils.c:1377:15:  [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).
	filename_l = strlen (filename);
data/goobox-3.6.0/src/glib-utils.c:1408:6:  [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).
	p = strlen (uri) - 1;
data/goobox-3.6.0/src/glib-utils.c:1432:8:  [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).
	len = strlen (uri);
data/goobox-3.6.0/src/glib-utils.c:1542:32:  [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).
		source_suffix = source_uri + strlen (source_base_uri);
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:831:54:  [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).
  g_checksum_update (checksum, (const guchar *) uri, strlen (uri));
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:890:54:  [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).
  g_checksum_update (checksum, (const guchar *) uri, strlen (uri));
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1342:54:  [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).
  g_checksum_update (checksum, (const guchar *) uri, strlen (uri));
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1446:54:  [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).
  g_checksum_update (checksum, (const guchar *) uri, strlen (uri));
data/goobox-3.6.0/src/gnome-desktop-thumbnail.c:1518:39:  [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).
                                      strlen (uri));
data/goobox-3.6.0/src/goo-window.c:1190:12:  [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).
			       (strlen (info->str) > 0) ? info->str : NULL);
data/goobox-3.6.0/src/gtk-utils.c:773:53:  [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).
		accel_data->action_name = g_strdup (action_name + strlen ("win."));

ANALYSIS SUMMARY:

Hits = 69
Lines analyzed = 18564 in approximately 0.44 seconds (42140 lines/second)
Physical Source Lines of Code (SLOC) = 13415
Hits@level = [0]   2 [1]  30 [2]  23 [3]  13 [4]   3 [5]   0
Hits@level+ = [0+]  71 [1+]  69 [2+]  39 [3+]  16 [4+]   3 [5+]   0
Hits/KSLOC@level+ = [0+] 5.29258 [1+] 5.1435 [2+] 2.90719 [3+] 1.19269 [4+] 0.22363 [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.