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/pekka-kana-2-1.2.7/src/draw.cpp
Examining data/pekka-kana-2-1.2.7/src/draw.h
Examining data/pekka-kana-2-1.2.7/src/engine.cpp
Examining data/pekka-kana-2-1.2.7/src/engine.h
Examining data/pekka-kana-2-1.2.7/src/font.cpp
Examining data/pekka-kana-2-1.2.7/src/font.h
Examining data/pekka-kana-2-1.2.7/src/input.cpp
Examining data/pekka-kana-2-1.2.7/src/input.h
Examining data/pekka-kana-2-1.2.7/src/language.cpp
Examining data/pekka-kana-2-1.2.7/src/language.h
Examining data/pekka-kana-2-1.2.7/src/log.cpp
Examining data/pekka-kana-2-1.2.7/src/log.h
Examining data/pekka-kana-2-1.2.7/src/map.cpp
Examining data/pekka-kana-2-1.2.7/src/map.h
Examining data/pekka-kana-2-1.2.7/src/pk2.cpp
Examining data/pekka-kana-2-1.2.7/src/platform.h
Examining data/pekka-kana-2-1.2.7/src/sound.cpp
Examining data/pekka-kana-2-1.2.7/src/sound.h
Examining data/pekka-kana-2-1.2.7/src/sprite.cpp
Examining data/pekka-kana-2-1.2.7/src/sprite.h
Examining data/pekka-kana-2-1.2.7/src/types.h
Examining data/pekka-kana-2-1.2.7/src/utils.cpp
Examining data/pekka-kana-2-1.2.7/src/utils.h

FINAL RESULTS:

data/pekka-kana-2-1.2.7/src/engine.cpp:75:15:  [5] (race) readlink:
  This accepts filename arguments; if an attacker can move those files or
  change the link content, a race condition results. Also, it does not
  terminate with ASCII NUL. (CWE-362, CWE-20). Reconsider approach.
		int count = readlink("/proc/self/exe", exepath, _MAX_PATH);
data/pekka-kana-2-1.2.7/src/font.cpp:99:2:  [4] (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).
	strcpy(path,file_path);
data/pekka-kana-2-1.2.7/src/font.cpp:100:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(path,file);
data/pekka-kana-2-1.2.7/src/font.cpp:126:2:  [4] (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).
	strcpy(chars,param_file->Hae_Teksti(i));
data/pekka-kana-2-1.2.7/src/font.cpp:129:2:  [4] (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).
	strcpy(path,file_path);
data/pekka-kana-2-1.2.7/src/font.cpp:130:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(path,param_file->Hae_Teksti(i));
data/pekka-kana-2-1.2.7/src/input.cpp:252:4:  [4] (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).
			strcpy(str, event.text.text);
data/pekka-kana-2-1.2.7/src/language.cpp:163:3:  [4] (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).
		strcpy(tekstit[index],teksti);
data/pekka-kana-2-1.2.7/src/log.cpp:43:3:  [4] (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).
		strcpy(mjono,viesti);
data/pekka-kana-2-1.2.7/src/map.cpp:94:2:  [4] (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).
	strcpy(this->versio, PK2KARTTA_VIIMEISIN_VERSIO);
data/pekka-kana-2-1.2.7/src/map.cpp:139:2:  [4] (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).
	strcpy(this->versio,		kartta.versio);
data/pekka-kana-2-1.2.7/src/map.cpp:140:2:  [4] (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).
	strcpy(this->palikka_bmp,	kartta.palikka_bmp);
data/pekka-kana-2-1.2.7/src/map.cpp:141:2:  [4] (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).
	strcpy(this->taustakuva,	kartta.taustakuva);
data/pekka-kana-2-1.2.7/src/map.cpp:142:2:  [4] (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).
	strcpy(this->musiikki,		kartta.musiikki);
data/pekka-kana-2-1.2.7/src/map.cpp:144:2:  [4] (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).
	strcpy(this->nimi,			kartta.nimi);
data/pekka-kana-2-1.2.7/src/map.cpp:145:2:  [4] (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).
	strcpy(this->tekija,		kartta.tekija);
data/pekka-kana-2-1.2.7/src/map.cpp:176:3:  [4] (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).
		strcpy(this->protot[i],kartta.protot[i]);
data/pekka-kana-2-1.2.7/src/map.cpp:328:2:  [4] (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).
	strcpy(this->versio, PK2KARTTA_VIIMEISIN_VERSIO);
data/pekka-kana-2-1.2.7/src/map.cpp:350:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, this->kytkin1_aika);
data/pekka-kana-2-1.2.7/src/map.cpp:355:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, this->kytkin2_aika);
data/pekka-kana-2-1.2.7/src/map.cpp:360:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, this->kytkin3_aika);
data/pekka-kana-2-1.2.7/src/map.cpp:407:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(buf, luku, "%i\n", protoja);
data/pekka-kana-2-1.2.7/src/map.cpp:430:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, aloitus_x);
data/pekka-kana-2-1.2.7/src/map.cpp:433:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, aloitus_y);
data/pekka-kana-2-1.2.7/src/map.cpp:436:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, leveys);
data/pekka-kana-2-1.2.7/src/map.cpp:439:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, korkeus);
data/pekka-kana-2-1.2.7/src/map.cpp:455:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, aloitus_x);
data/pekka-kana-2-1.2.7/src/map.cpp:459:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, aloitus_y);
data/pekka-kana-2-1.2.7/src/map.cpp:463:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, leveys);
data/pekka-kana-2-1.2.7/src/map.cpp:467:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, korkeus);
data/pekka-kana-2-1.2.7/src/map.cpp:486:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, aloitus_x);
data/pekka-kana-2-1.2.7/src/map.cpp:490:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, aloitus_y);
data/pekka-kana-2-1.2.7/src/map.cpp:494:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, leveys);
data/pekka-kana-2-1.2.7/src/map.cpp:498:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(luku, "%" PRIu32, korkeus);
data/pekka-kana-2-1.2.7/src/map.cpp:522:2:  [4] (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).
	strcpy(file,polku);
data/pekka-kana-2-1.2.7/src/map.cpp:523:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(file,nimi);
data/pekka-kana-2-1.2.7/src/map.cpp:573:2:  [4] (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).
	strcpy(file,polku);
data/pekka-kana-2-1.2.7/src/map.cpp:574:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(file,nimi);
data/pekka-kana-2-1.2.7/src/map.cpp:627:2:  [4] (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).
	strcpy(this->versio, PK2KARTTA_VIIMEISIN_VERSIO);
data/pekka-kana-2-1.2.7/src/map.cpp:662:2:  [4] (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).
	strcpy(this->versio,		kartta->versio);
data/pekka-kana-2-1.2.7/src/map.cpp:663:2:  [4] (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).
	strcpy(this->palikka_bmp,	kartta->palikka_bmp);
data/pekka-kana-2-1.2.7/src/map.cpp:664:2:  [4] (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).
	strcpy(this->taustakuva,	kartta->taustakuva);
data/pekka-kana-2-1.2.7/src/map.cpp:665:2:  [4] (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).
	strcpy(this->musiikki,		kartta->musiikki);
data/pekka-kana-2-1.2.7/src/map.cpp:667:2:  [4] (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).
	strcpy(this->nimi,			kartta->nimi);
data/pekka-kana-2-1.2.7/src/map.cpp:668:2:  [4] (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).
	strcpy(this->tekija,		kartta->tekija);
data/pekka-kana-2-1.2.7/src/map.cpp:936:2:  [4] (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).
	strcpy(this->versio, PK2KARTTA_VIIMEISIN_VERSIO);
data/pekka-kana-2-1.2.7/src/map.cpp:969:2:  [4] (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).
	strcpy(this->versio,		kartta.versio);
data/pekka-kana-2-1.2.7/src/map.cpp:970:2:  [4] (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).
	strcpy(this->palikka_bmp,	kartta.palikka_bmp);
data/pekka-kana-2-1.2.7/src/map.cpp:971:2:  [4] (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).
	strcpy(this->taustakuva,	kartta.taustakuva);
data/pekka-kana-2-1.2.7/src/map.cpp:972:2:  [4] (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).
	strcpy(this->musiikki,		kartta.musiikki);
data/pekka-kana-2-1.2.7/src/map.cpp:974:2:  [4] (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).
	strcpy(this->nimi,			kartta.nimi);
data/pekka-kana-2-1.2.7/src/map.cpp:975:2:  [4] (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).
	strcpy(this->tekija,		kartta.tekija);
data/pekka-kana-2-1.2.7/src/map.cpp:1002:2:  [4] (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).
	strcpy(file,polku);
data/pekka-kana-2-1.2.7/src/map.cpp:1007:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(file,filename);
data/pekka-kana-2-1.2.7/src/map.cpp:1010:3:  [4] (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).
		strcpy(file,PK2Kartta::pk2_hakemisto);
data/pekka-kana-2-1.2.7/src/map.cpp:1012:3:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
		strcat(file,filename);
data/pekka-kana-2-1.2.7/src/map.cpp:1021:2:  [4] (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).
	strcpy(this->taustakuva,filename);
data/pekka-kana-2-1.2.7/src/map.cpp:1051:2:  [4] (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).
	strcpy(file,polku);
data/pekka-kana-2-1.2.7/src/map.cpp:1056:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(file,filename);
data/pekka-kana-2-1.2.7/src/map.cpp:1059:3:  [4] (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).
		strcpy(file,PK2Kartta::pk2_hakemisto);
data/pekka-kana-2-1.2.7/src/map.cpp:1061:3:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
		strcat(file,filename);
data/pekka-kana-2-1.2.7/src/map.cpp:1074:2:  [4] (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).
	strcpy(this->palikka_bmp,filename);
data/pekka-kana-2-1.2.7/src/map.cpp:1085:3:  [4] (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).
		strcpy(this->versio,		kartta.versio);
data/pekka-kana-2-1.2.7/src/map.cpp:1086:3:  [4] (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).
		strcpy(this->palikka_bmp,	kartta.palikka_bmp);
data/pekka-kana-2-1.2.7/src/map.cpp:1087:3:  [4] (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).
		strcpy(this->taustakuva,	kartta.taustakuva);
data/pekka-kana-2-1.2.7/src/map.cpp:1088:3:  [4] (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).
		strcpy(this->musiikki,		kartta.musiikki);
data/pekka-kana-2-1.2.7/src/map.cpp:1090:3:  [4] (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).
		strcpy(this->nimi,			kartta.nimi);
data/pekka-kana-2-1.2.7/src/map.cpp:1091:3:  [4] (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).
		strcpy(this->tekija,		kartta.tekija);
data/pekka-kana-2-1.2.7/src/map.cpp:1115:4:  [4] (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).
			strcpy(this->protot[i],kartta.protot[i]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:654:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(filename, DATA_PATH);
data/pekka-kana-2-1.2.7/src/pk2.cpp:704:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(filename, DATA_PATH);
data/pekka-kana-2-1.2.7/src/pk2.cpp:732:4:  [4] (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).
			strcpy(episodipisteet.top_pelaajat[jakso],pelaajan_nimi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:738:4:  [4] (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).
			strcpy(episodipisteet.nopeimmat_pelaajat[jakso],pelaajan_nimi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:747:4:  [4] (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).
			strcpy(episodipisteet.episodin_top_pelaaja,pelaajan_nimi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:757:2:  [4] (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).
	strcpy(buffer, DATA_PATH);
data/pekka-kana-2-1.2.7/src/pk2.cpp:758:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(buffer, episodi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:760:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(buffer, filename);
data/pekka-kana-2-1.2.7/src/pk2.cpp:784:2:  [4] (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).
	strcpy(buffer, DATA_PATH);
data/pekka-kana-2-1.2.7/src/pk2.cpp:785:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(buffer, episodi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:790:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(buffer, filename);
data/pekka-kana-2-1.2.7/src/pk2.cpp:836:4:  [4] (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).
			strcpy(langmenulist[i],langlist[i]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:839:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(tiedosto,settings.kieli);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1001:2:  [4] (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).
	strcpy(uusi_tiedosto, tyohakemisto);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1003:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(uusi_tiedosto, tiedosto);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1004:2:  [4] (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).
	strcpy(tiedosto, uusi_tiedosto);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1010:2:  [4] (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).
	strcpy(uusi_tiedosto, tyohakemisto);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1012:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(uusi_tiedosto, episodi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1014:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(uusi_tiedosto, tiedosto);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1015:2:  [4] (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).
	strcpy(tiedosto, uusi_tiedosto);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1076:3:  [4] (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).
		strcpy(jaksot[i].tiedosto,list[i]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1078:4:  [4] (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).
			strcpy(jaksot[i].nimi, temp->nimi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1146:6:  [4] (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).
					strcpy(temp, episodit[t]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1147:6:  [4] (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).
					strcpy(episodit[t], episodit[t+1]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1148:6:  [4] (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).
					strcpy(episodit[t+1], temp);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1197:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(filename, DATA_PATH);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1231:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(filename, DATA_PATH);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1249:3:  [4] (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).
		strcpy(episodi,tallennukset[i].episodi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1250:3:  [4] (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).
		strcpy(pelaajan_nimi, tallennukset[i].nimi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1269:2:  [4] (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).
	strcpy(tallennukset[i].episodi, episodi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1270:2:  [4] (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).
	strcpy(tallennukset[i].nimi,pelaajan_nimi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1682:3:  [4] (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).
		strcpy(ilmoitus,teksti);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1694:2:  [4] (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).
	strcpy(fadetekstit[fadeteksti_index].teksti,teksti);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2336:3:  [4] (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).
		strcpy(aanitiedosto,polku);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2337:3:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
		strcat(aanitiedosto,tiedosto);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2347:2:  [4] (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).
	strcpy(aanipolku,polku);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2362:4:  [4] (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).
			strcpy(testipolku,aanipolku);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2364:4:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
			strcat(testipolku,protot[seuraava_vapaa_proto].aanitiedostot[i]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2374:5:  [4] (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).
				strcpy(testipolku,aanipolku);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2376:5:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
				strcat(testipolku,protot[seuraava_vapaa_proto].aanitiedostot[i]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2607:3:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
		strcat(biisi,kartta->musiikki);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2610:4:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
			strcat(biisi,kartta->musiikki);
data/pekka-kana-2-1.2.7/src/pk2.cpp:3123:2:  [4] (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).
	strcpy(ilmo,tekstit->Hae_Teksti(txt_game_newitem));  //"a new item: ";
data/pekka-kana-2-1.2.7/src/pk2.cpp:5001:4:  [4] (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).
			strcpy(pelaajan_nimi,tekstit->Hae_Teksti(txt_player_default_name));
data/pekka-kana-2-1.2.7/src/pk2.cpp:6362:4:  [4] (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).
			strcpy(episodi,episodit[2]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6397:3:  [4] (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).
		strcpy(tpaikka,ind);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6400:3:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
		strcat(tpaikka,tallennukset[i].nimi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6441:3:  [4] (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).
		strcpy(tpaikka,ind);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6444:3:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
		strcat(tpaikka,tallennukset[i].nimi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6858:5:  [4] (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).
				strcpy(episodi,episodit[i]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6892:4:  [4] (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).
			strcpy(settings.kieli,langmenulist[i]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6907:6:  [4] (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).
					strcpy(langmenulist[i],langmenulist[i-1]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6908:5:  [4] (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).
				strcpy(langmenulist[0],langlist[langlistindex-1]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6916:6:  [4] (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).
					strcpy(langmenulist[i],langmenulist[i+1]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6917:5:  [4] (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).
				strcpy(langmenulist[9],langlist[langlistindex+10]);
data/pekka-kana-2-1.2.7/src/pk2.cpp:7077:6:  [4] (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).
					strcpy(seuraava_kartta,jaksot[i].tiedosto);
data/pekka-kana-2-1.2.7/src/pk2.cpp:7981:2:  [4] (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).
	strcpy(buffer, arg);
data/pekka-kana-2-1.2.7/src/pk2.cpp:7985:2:  [4] (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).
	strcpy(episodi, buffer); episodi[sepindex] = '\0';
data/pekka-kana-2-1.2.7/src/pk2.cpp:7986:2:  [4] (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).
	strcpy(seuraava_kartta, buffer + sepindex + 1);
data/pekka-kana-2-1.2.7/src/pk2.cpp:8022:4:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
			printf(PK2_VERSION);
data/pekka-kana-2-1.2.7/src/pk2.cpp:8039:2:  [4] (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).
	strcpy(DATA_PATH, getenv("HOME"));
data/pekka-kana-2-1.2.7/src/sound.cpp:137:2:  [4] (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).
	strcpy(playingMusic,filename);
data/pekka-kana-2-1.2.7/src/sprite.cpp:27:2:  [4] (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).
	strcpy(versio,PK2SPRITE_VIIMEISIN_VERSIO);
data/pekka-kana-2-1.2.7/src/sprite.cpp:113:2:  [4] (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).
	strcpy(versio,proto.versio);
data/pekka-kana-2-1.2.7/src/sprite.cpp:114:2:  [4] (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).
	strcpy(tiedosto,proto.tiedosto);
data/pekka-kana-2-1.2.7/src/sprite.cpp:115:2:  [4] (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).
	strcpy(kuvatiedosto,proto.kuvatiedosto);
data/pekka-kana-2-1.2.7/src/sprite.cpp:116:2:  [4] (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).
	strcpy(nimi, proto.nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:117:2:  [4] (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).
	strcpy(this->muutos_sprite,proto.muutos_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:118:2:  [4] (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).
	strcpy(this->bonus_sprite,proto.bonus_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:119:2:  [4] (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).
	strcpy(this->ammus1_sprite,proto.ammus1_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:120:2:  [4] (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).
	strcpy(this->ammus2_sprite,proto.ammus2_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:123:3:  [4] (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).
		strcpy(aanitiedostot[aani], proto.aanitiedostot[aani]);
data/pekka-kana-2-1.2.7/src/sprite.cpp:195:2:  [4] (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).
	strcpy(versio,PK2SPRITE_VIIMEISIN_VERSIO);
data/pekka-kana-2-1.2.7/src/sprite.cpp:306:2:  [4] (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).
	strcpy(kuvatiedosto,	proto.kuvatiedosto);
data/pekka-kana-2-1.2.7/src/sprite.cpp:307:2:  [4] (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).
	strcpy(nimi,			proto.nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:308:2:  [4] (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).
	strcpy(muutos_sprite,	proto.muutos_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:309:2:  [4] (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).
	strcpy(bonus_sprite,	proto.bonus_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:310:2:  [4] (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).
	strcpy(ammus1_sprite,	proto.ammus1_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:311:2:  [4] (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).
	strcpy(ammus2_sprite,	proto.ammus2_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:315:3:  [4] (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).
		strcpy(aanitiedostot[aani], proto.aanitiedostot[aani]);
data/pekka-kana-2-1.2.7/src/sprite.cpp:358:2:  [4] (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).
	strcpy(kuvatiedosto,	proto.kuvatiedosto);
data/pekka-kana-2-1.2.7/src/sprite.cpp:359:2:  [4] (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).
	strcpy(nimi,			proto.nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:360:2:  [4] (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).
	strcpy(muutos_sprite,	proto.muutos_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:361:2:  [4] (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).
	strcpy(bonus_sprite,	proto.bonus_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:362:2:  [4] (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).
	strcpy(ammus1_sprite,	proto.ammus1_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:363:2:  [4] (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).
	strcpy(ammus2_sprite,	proto.ammus2_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:367:3:  [4] (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).
		strcpy(aanitiedostot[aani], proto.aanitiedostot[aani]);
data/pekka-kana-2-1.2.7/src/sprite.cpp:416:2:  [4] (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).
	strcpy(kuvatiedosto,	proto.kuvatiedosto);
data/pekka-kana-2-1.2.7/src/sprite.cpp:417:2:  [4] (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).
	strcpy(nimi,			proto.nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:418:2:  [4] (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).
	strcpy(muutos_sprite,	proto.muutos_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:419:2:  [4] (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).
	strcpy(bonus_sprite,	proto.bonus_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:420:2:  [4] (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).
	strcpy(ammus1_sprite,	proto.ammus1_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:421:2:  [4] (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).
	strcpy(ammus2_sprite,	proto.ammus2_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:425:3:  [4] (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).
		strcpy(aanitiedostot[aani], proto.aanitiedostot[aani]);
data/pekka-kana-2-1.2.7/src/sprite.cpp:481:2:  [4] (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).
	strcpy(kuvatiedosto,	proto.kuvatiedosto);
data/pekka-kana-2-1.2.7/src/sprite.cpp:482:2:  [4] (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).
	strcpy(nimi,		proto.nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:483:2:  [4] (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).
	strcpy(muutos_sprite,	proto.muutos_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:484:2:  [4] (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).
	strcpy(bonus_sprite,	proto.bonus_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:485:2:  [4] (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).
	strcpy(ammus1_sprite,	proto.ammus1_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:486:2:  [4] (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).
	strcpy(ammus2_sprite,	proto.ammus2_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:490:3:  [4] (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).
		strcpy(aanitiedostot[aani], proto.aanitiedostot[aani]);
data/pekka-kana-2-1.2.7/src/sprite.cpp:557:2:  [4] (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).
	strcpy(proto.kuvatiedosto,kuvatiedosto);
data/pekka-kana-2-1.2.7/src/sprite.cpp:558:2:  [4] (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).
	strcpy(proto.nimi, nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:559:2:  [4] (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).
	strcpy(proto.muutos_sprite,muutos_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:560:2:  [4] (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).
	strcpy(proto.bonus_sprite,bonus_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:561:2:  [4] (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).
	strcpy(proto.ammus1_sprite,ammus1_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:562:2:  [4] (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).
	strcpy(proto.ammus2_sprite,ammus2_sprite);
data/pekka-kana-2-1.2.7/src/sprite.cpp:566:3:  [4] (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).
		strcpy(proto.aanitiedostot[aani], aanitiedostot[aani]);
data/pekka-kana-2-1.2.7/src/sprite.cpp:637:2:  [4] (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).
	strcpy(kuva,polku);
data/pekka-kana-2-1.2.7/src/sprite.cpp:642:3:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
		strcat(polku,tiedoston_nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:644:3:  [4] (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).
		strcpy(polku,tiedoston_nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:662:3:  [4] (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).
		strcpy(this->versio,versio);
data/pekka-kana-2-1.2.7/src/sprite.cpp:663:3:  [4] (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).
		strcpy(this->tiedosto,tiedoston_nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:670:3:  [4] (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).
		strcpy(this->versio,versio);
data/pekka-kana-2-1.2.7/src/sprite.cpp:671:3:  [4] (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).
		strcpy(this->tiedosto,tiedoston_nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:678:3:  [4] (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).
		strcpy(this->versio,versio);
data/pekka-kana-2-1.2.7/src/sprite.cpp:679:3:  [4] (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).
		strcpy(this->tiedosto,tiedoston_nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:686:3:  [4] (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).
		strcpy(this->versio,versio);
data/pekka-kana-2-1.2.7/src/sprite.cpp:687:3:  [4] (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).
		strcpy(this->tiedosto,tiedoston_nimi);
data/pekka-kana-2-1.2.7/src/sprite.cpp:698:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(kuva,kuvatiedosto);
data/pekka-kana-2-1.2.7/src/sprite.cpp:748:5:  [4] (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).
   	strcpy(this->tiedosto,tiedoston_nimi);
data/pekka-kana-2-1.2.7/src/utils.cpp:100:3:  [4] (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).
		strcpy(list[i], map_file.name);
data/pekka-kana-2-1.2.7/src/utils.cpp:106:3:  [4] (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).
		strcpy(list[i], map_file.name);
data/pekka-kana-2-1.2.7/src/utils.cpp:130:3:  [4] (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).
		strcpy(ext,namelist[i]->d_name);
data/pekka-kana-2-1.2.7/src/utils.cpp:133:4:  [4] (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).
			strcpy(list[files], namelist[i]->d_name);
data/pekka-kana-2-1.2.7/src/utils.cpp:137:4:  [4] (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).
			strcpy(list[files], namelist[i]->d_name);
data/pekka-kana-2-1.2.7/src/utils.cpp:149:2:  [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused).
	strcat(shell, directory);
data/pekka-kana-2-1.2.7/src/utils.cpp:150:2:  [4] (shell) system:
  This causes a new program to execute and is difficult to use safely
  (CWE-78). try using a library call that implements the same functionality
  if available.
	system(shell);
data/pekka-kana-2-1.2.7/src/pk2.cpp:5002:4:  [3] (random) srand:
  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.
			srand((unsigned)time(NULL));
data/pekka-kana-2-1.2.7/src/pk2.cpp:8039:20:  [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker. They 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.
	strcpy(DATA_PATH, getenv("HOME"));
data/pekka-kana-2-1.2.7/src/engine.cpp:69: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 exepath[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/font.cpp:90: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 path[128];
data/pekka-kana-2-1.2.7/src/font.cpp:95: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 chars[256];
data/pekka-kana-2-1.2.7/src/font.cpp:108:14:  [2] (integer) atoi:
  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).
	buf_width = atoi(param_file->Hae_Teksti(i));
data/pekka-kana-2-1.2.7/src/font.cpp:111:10:  [2] (integer) atoi:
  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).
	buf_x = atoi(param_file->Hae_Teksti(i));
data/pekka-kana-2-1.2.7/src/font.cpp:114:10:  [2] (integer) atoi:
  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).
	buf_y = atoi(param_file->Hae_Teksti(i));
data/pekka-kana-2-1.2.7/src/font.cpp:120:11:  [2] (integer) atoi:
  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).
	char_w = atoi(param_file->Hae_Teksti(i));
data/pekka-kana-2-1.2.7/src/font.cpp:123:11:  [2] (integer) atoi:
  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).
	char_h = atoi(param_file->Hae_Teksti(i));
data/pekka-kana-2-1.2.7/src/input.cpp:29: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					nimi[80];
data/pekka-kana-2-1.2.7/src/input.cpp:249: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 c, str[5];
data/pekka-kana-2-1.2.7/src/language.h:30: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 tekstit[MAX_TEXTS][MAX_TEXT_LENGTH+1];
data/pekka-kana-2-1.2.7/src/language.h:31: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 otsikot[MAX_TEXTS][MAX_HEAD_LENGTH+1];
data/pekka-kana-2-1.2.7/src/log.cpp:36:19:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
		if ((tiedosto = fopen(filename, "a")) == NULL)
data/pekka-kana-2-1.2.7/src/log.cpp:41: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 mjono[255];
data/pekka-kana-2-1.2.7/src/map.cpp:41: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		versio[8];
data/pekka-kana-2-1.2.7/src/map.cpp:42: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		nimi[40];
data/pekka-kana-2-1.2.7/src/map.cpp:95:2:  [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(this->palikka_bmp,"blox.bmp");
data/pekka-kana-2-1.2.7/src/map.cpp:96:2:  [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(this->taustakuva, "default.bmp");
data/pekka-kana-2-1.2.7/src/map.cpp:97:2:  [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(this->musiikki,   "default.xm");
data/pekka-kana-2-1.2.7/src/map.cpp:99:2:  [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(this->nimi,  "untitled");
data/pekka-kana-2-1.2.7/src/map.cpp:100:2:  [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(this->tekija,"unknown");
data/pekka-kana-2-1.2.7/src/map.cpp:323: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 luku[8];
data/pekka-kana-2-1.2.7/src/map.cpp:340: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(luku, "%i", this->jakso);
data/pekka-kana-2-1.2.7/src/map.cpp:345: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(luku, "%i", this->ilma);
data/pekka-kana-2-1.2.7/src/map.cpp:365: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(luku, "%i", this->aika);
data/pekka-kana-2-1.2.7/src/map.cpp:370: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(luku, "%i", this->extra);
data/pekka-kana-2-1.2.7/src/map.cpp:375: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(luku, "%i", this->tausta);
data/pekka-kana-2-1.2.7/src/map.cpp:380: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(luku, "%i", this->pelaaja_sprite);
data/pekka-kana-2-1.2.7/src/map.cpp:385: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(luku, "%i", this->x);
data/pekka-kana-2-1.2.7/src/map.cpp:390: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(luku, "%i", this->y);
data/pekka-kana-2-1.2.7/src/map.cpp:395: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(luku, "%i", this->ikoni);
data/pekka-kana-2-1.2.7/src/map.cpp:406: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 [13];
data/pekka-kana-2-1.2.7/src/map.cpp:421: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 tile[1];
data/pekka-kana-2-1.2.7/src/map.cpp:521: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 file[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/map.cpp:526: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 versio[8] = "\0";
data/pekka-kana-2-1.2.7/src/map.cpp:572: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 file[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/map.cpp:577: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 versio[8] = "\0";
data/pekka-kana-2-1.2.7/src/map.cpp:619:18:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	if ((tiedosto = fopen(filename, "r")) == NULL){
data/pekka-kana-2-1.2.7/src/map.cpp:628:2:  [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(this->palikka_bmp,"blox.bmp");
data/pekka-kana-2-1.2.7/src/map.cpp:629:2:  [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(this->taustakuva, "default.bmp");
data/pekka-kana-2-1.2.7/src/map.cpp:630:2:  [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(this->musiikki,   "default.xm");
data/pekka-kana-2-1.2.7/src/map.cpp:632:2:  [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(this->nimi,  "v01");
data/pekka-kana-2-1.2.7/src/map.cpp:633:2:  [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(this->tekija,"unknown");
data/pekka-kana-2-1.2.7/src/map.cpp:653:18:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	if ((tiedosto = fopen(filename, "r")) == NULL)
data/pekka-kana-2-1.2.7/src/map.cpp:690:18:  [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move things
  around to create a race condition, control its ancestors, or change its
  contents? (CWE-362).
	if ((tiedosto = fopen(filename, "r")) == NULL)
data/pekka-kana-2-1.2.7/src/map.cpp:734: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 luku[8];
data/pekka-kana-2-1.2.7/src/map.cpp:758:16:  [2] (integer) atoi:
  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).
	this->jakso = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:761:15:  [2] (integer) atoi:
  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).
	this->ilma = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:764:23:  [2] (integer) atoi:
  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).
	this->kytkin1_aika = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:767:23:  [2] (integer) atoi:
  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).
	this->kytkin2_aika = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:770:23:  [2] (integer) atoi:
  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).
	this->kytkin3_aika = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:773:15:  [2] (integer) atoi:
  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).
	this->aika = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:776:16:  [2] (integer) atoi:
  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).
	this->extra = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:779:17:  [2] (integer) atoi:
  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).
	this->tausta = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:782:25:  [2] (integer) atoi:
  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).
	this->pelaaja_sprite = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:804: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 luku[8];
data/pekka-kana-2-1.2.7/src/map.cpp:829:16:  [2] (integer) atoi:
  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).
	this->jakso = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:833:15:  [2] (integer) atoi:
  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).
	this->ilma = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:837:23:  [2] (integer) atoi:
  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).
	this->kytkin1_aika = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:841:23:  [2] (integer) atoi:
  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).
	this->kytkin2_aika = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:845:23:  [2] (integer) atoi:
  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).
	this->kytkin3_aika = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:849:15:  [2] (integer) atoi:
  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).
	this->aika = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:853:16:  [2] (integer) atoi:
  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).
	this->extra = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:857:17:  [2] (integer) atoi:
  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).
	this->tausta = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:861:25:  [2] (integer) atoi:
  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).
	this->pelaaja_sprite = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:865:12:  [2] (integer) atoi:
  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).
	this->x = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:869:12:  [2] (integer) atoi:
  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).
	this->y = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:873:16:  [2] (integer) atoi:
  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).
	this->ikoni = atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:878:13:  [2] (integer) atoi:
  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).
	lkm = (int)atoi(luku);
data/pekka-kana-2-1.2.7/src/map.cpp:886: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 tile[1];
data/pekka-kana-2-1.2.7/src/map.cpp:889:50:  [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).
	tiedosto->read(luku, sizeof(luku)); aloitus_x = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:890:50:  [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).
	tiedosto->read(luku, sizeof(luku)); aloitus_y = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:891:50:  [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).
	tiedosto->read(luku, sizeof(luku)); leveys    = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:892:50:  [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).
	tiedosto->read(luku, sizeof(luku)); korkeus   = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:901:50:  [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).
	tiedosto->read(luku, sizeof(luku)); aloitus_x = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:902:50:  [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).
	tiedosto->read(luku, sizeof(luku)); aloitus_y = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:903:50:  [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).
	tiedosto->read(luku, sizeof(luku)); leveys    = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:904:50:  [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).
	tiedosto->read(luku, sizeof(luku)); korkeus   = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:913:50:  [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).
	tiedosto->read(luku, sizeof(luku)); aloitus_x = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:914:50:  [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).
	tiedosto->read(luku, sizeof(luku)); aloitus_y = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:915:50:  [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).
	tiedosto->read(luku, sizeof(luku)); leveys    = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:916:50:  [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).
	tiedosto->read(luku, sizeof(luku)); korkeus   = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:937:2:  [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(this->palikka_bmp,"blox.bmp");
data/pekka-kana-2-1.2.7/src/map.cpp:938:2:  [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(this->taustakuva, "default.bmp");
data/pekka-kana-2-1.2.7/src/map.cpp:939:2:  [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(this->musiikki,   "default.xm");
data/pekka-kana-2-1.2.7/src/map.cpp:941:2:  [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(this->nimi,  "untitled");
data/pekka-kana-2-1.2.7/src/map.cpp:942:2:  [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(this->tekija,"unknown");
data/pekka-kana-2-1.2.7/src/map.cpp:1000: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 file[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/map.cpp:1011:3:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
		strcat(file,"gfx/scenery/");
data/pekka-kana-2-1.2.7/src/map.cpp:1049: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 file[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/map.cpp:1060:3:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
		strcat(file,"gfx/tiles/");
data/pekka-kana-2-1.2.7/src/map.h:25:7:  [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 PK2KARTTA_VIIMEISIN_VERSIO[4]                = "1.3";
data/pekka-kana-2-1.2.7/src/map.h:85: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		versio[5];
data/pekka-kana-2-1.2.7/src/map.h:86: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		palikka_bmp[13];
data/pekka-kana-2-1.2.7/src/map.h:87: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		taustakuva[13];
data/pekka-kana-2-1.2.7/src/map.h:88: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		musiikki[13];
data/pekka-kana-2-1.2.7/src/map.h:90: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		nimi[40];
data/pekka-kana-2-1.2.7/src/map.h:91: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		tekija[40];
data/pekka-kana-2-1.2.7/src/map.h:106: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		protot [PK2KARTTA_KARTTA_MAX_PROTOTYYPPEJA][13];
data/pekka-kana-2-1.2.7/src/map.h:116:9:  [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	pk2_hakemisto[256];
data/pekka-kana-2-1.2.7/src/pk2.cpp:40: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(s, "%i", n);
data/pekka-kana-2-1.2.7/src/pk2.cpp:43: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(s, "%i", (int)n);
data/pekka-kana-2-1.2.7/src/pk2.cpp:134: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 top_pelaajat[EPISODI_MAX_JAKSOJA][20];
data/pekka-kana-2-1.2.7/src/pk2.cpp:136: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 nopeimmat_pelaajat[EPISODI_MAX_JAKSOJA][20];
data/pekka-kana-2-1.2.7/src/pk2.cpp:139: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  episodin_top_pelaaja[20];
data/pekka-kana-2-1.2.7/src/pk2.cpp:170: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	tiedosto[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:171: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	nimi[40];
data/pekka-kana-2-1.2.7/src/pk2.cpp:180: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 teksti[20];
data/pekka-kana-2-1.2.7/src/pk2.cpp:188: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  episodi[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:189: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  nimi[20];
data/pekka-kana-2-1.2.7/src/pk2.cpp:198: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 kieli[128]; // language
data/pekka-kana-2-1.2.7/src/pk2.cpp:251:1:  [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 DATA_PATH[_MAX_PATH] = "";
data/pekka-kana-2-1.2.7/src/pk2.cpp:262:1:  [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	viesti[60];
data/pekka-kana-2-1.2.7/src/pk2.cpp:266:1:  [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 seuraava_kartta[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:330:1:  [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 episodit[MAX_EPISODEJA][_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:331:1:  [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 episodi[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:345:1:  [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 pelaajan_nimi[20] = " ";
data/pekka-kana-2-1.2.7/src/pk2.cpp:394:1:  [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 ilmoitus[80] = " ";
data/pekka-kana-2-1.2.7/src/pk2.cpp:413:1:  [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 tyohakemisto[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:450:1:  [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 langlist[60][_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:451:1:  [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 langmenulist[10][_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:621:2:  [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(settings.kieli,"english.txt");
data/pekka-kana-2-1.2.7/src/pk2.cpp:653: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 filename[_MAX_PATH] = "";
data/pekka-kana-2-1.2.7/src/pk2.cpp:655:2:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
	strcat(filename, "settings.ini");
data/pekka-kana-2-1.2.7/src/pk2.cpp:658: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 versio[4];
data/pekka-kana-2-1.2.7/src/pk2.cpp:703: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 filename[_MAX_PATH] = "";
data/pekka-kana-2-1.2.7/src/pk2.cpp:705:2:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
	strcat(filename, "settings.ini");
data/pekka-kana-2-1.2.7/src/pk2.cpp:756: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 buffer[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:763: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 versio[4];
data/pekka-kana-2-1.2.7/src/pk2.cpp:783: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 buffer[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:801: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 infofile[_MAX_PATH] = "infosign.txt";
data/pekka-kana-2-1.2.7/src/pk2.cpp:828: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 tiedosto[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:831:2:  [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(tiedosto,"language/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:999: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 uusi_tiedosto[255];
data/pekka-kana-2-1.2.7/src/pk2.cpp:1008: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 uusi_tiedosto[255];
data/pekka-kana-2-1.2.7/src/pk2.cpp:1011:2:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
	strcat(uusi_tiedosto, "/episodes/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1064: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 hakemisto[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:1065: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 list[EPISODI_MAX_JAKSOJA][_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:1134: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 temp[_MAX_PATH] = "";
data/pekka-kana-2-1.2.7/src/pk2.cpp:1163: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 hakemisto[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:1168:2:  [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(hakemisto,"episodes/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1181: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(tallennukset[i].nimi,"empty");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1192: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 versio[2];
data/pekka-kana-2-1.2.7/src/pk2.cpp:1193: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 lkmc[8];
data/pekka-kana-2-1.2.7/src/pk2.cpp:1196: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 filename[_MAX_PATH] = "";
data/pekka-kana-2-1.2.7/src/pk2.cpp:1198:2:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
	strcat(filename, "saves.dat");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1214:9:  [2] (integer) atoi:
  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).
		lkm = atoi(lkmc);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1225: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 versio[2] = "1";
data/pekka-kana-2-1.2.7/src/pk2.cpp:1226: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 lkm[8];
data/pekka-kana-2-1.2.7/src/pk2.cpp:1230: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 filename[_MAX_PATH] = "";
data/pekka-kana-2-1.2.7/src/pk2.cpp:1232:2:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
	strcat(filename, "saves.dat");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1630: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 kirjain[3] = " \0";
data/pekka-kana-2-1.2.7/src/pk2.cpp:1650: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 kirjain[3] = " \0";
data/pekka-kana-2-1.2.7/src/pk2.cpp:2334: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 aanitiedosto[255];
data/pekka-kana-2-1.2.7/src/pk2.cpp:2345: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 aanipolku[255];
data/pekka-kana-2-1.2.7/src/pk2.cpp:2346: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 testipolku[255];
data/pekka-kana-2-1.2.7/src/pk2.cpp:2372:5:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
				strcat(aanipolku,"/sprites/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2405: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 polku[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:2406:4:  [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(polku,"sprites/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2432: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 polku[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:2433:4:  [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(polku,"sprites/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2459: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 polku[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:2460:4:  [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(polku,"sprites/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2487: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 polku[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:2488:4:  [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(polku,"sprites/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2498: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 polku[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:2510:5:  [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(polku,"sprites/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2576: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 polku[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:2605: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 biisi[_MAX_PATH] = "";
data/pekka-kana-2-1.2.7/src/pk2.cpp:2609:4:  [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(biisi,"music/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:3122: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 ilmo[80];
data/pekka-kana-2-1.2.7/src/pk2.cpp:4089:6:  [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 luku[10];
data/pekka-kana-2-1.2.7/src/pk2.cpp:4541: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 lukua[50];
data/pekka-kana-2-1.2.7/src/pk2.cpp:4884: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 luku[6];
data/pekka-kana-2-1.2.7/src/pk2.cpp:5003:4:  [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(viesti,"no message");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5006:5:  [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(seuraava_kartta,"untitle1.map");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5207: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 topscoretiedosto[_MAX_PATH] = "scores.dat";
data/pekka-kana-2-1.2.7/src/pk2.cpp:5212: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 mapkuva[_MAX_PATH] = "map.bmp";
data/pekka-kana-2-1.2.7/src/pk2.cpp:5224: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 mapmusa[_MAX_PATH] = "music/map.mp3";
data/pekka-kana-2-1.2.7/src/pk2.cpp:5228:5:  [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(mapmusa,"music/map.ogg");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5231:5:  [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(mapmusa,"music/map.xm");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5234:5:  [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(mapmusa,"music/map.mod");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5237:5:  [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(mapmusa,"music/map.it");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5240:5:  [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(mapmusa,"music/map.s3m");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5243:5:  [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(mapmusa,"music/map.mp3");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5245:5:  [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(mapmusa,"music/map.ogg");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5247:5:  [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(mapmusa,"music/map.xm");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5371: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 pisteet_tiedosto[_MAX_PATH] = "scores.dat";
data/pekka-kana-2-1.2.7/src/pk2.cpp:5674: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 lukua[20];
data/pekka-kana-2-1.2.7/src/pk2.cpp:5712: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 dluku[50];
data/pekka-kana-2-1.2.7/src/pk2.cpp:5724: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 tpolku[_MAX_PATH] = "";
data/pekka-kana-2-1.2.7/src/pk2.cpp:5804: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 luku[15];
data/pekka-kana-2-1.2.7/src/pk2.cpp:5852: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 luku[15];
data/pekka-kana-2-1.2.7/src/pk2.cpp:5913: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 luku[15];
data/pekka-kana-2-1.2.7/src/pk2.cpp:6385: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 tpaikka[100];
data/pekka-kana-2-1.2.7/src/pk2.cpp:6386: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 jaksoc[8];
data/pekka-kana-2-1.2.7/src/pk2.cpp:6387: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 ind[4];
data/pekka-kana-2-1.2.7/src/pk2.cpp:6398:3:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
		strcat(tpaikka,". ");
data/pekka-kana-2-1.2.7/src/pk2.cpp:6428: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 tpaikka[100];
data/pekka-kana-2-1.2.7/src/pk2.cpp:6429: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 jaksoc[8];
data/pekka-kana-2-1.2.7/src/pk2.cpp:6430: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 ind[4];
data/pekka-kana-2-1.2.7/src/pk2.cpp:6442:3:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
		strcat(tpaikka,". ");
data/pekka-kana-2-1.2.7/src/pk2.cpp:6835: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 luku[20];
data/pekka-kana-2-1.2.7/src/pk2.cpp:6996: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 luku[20];
data/pekka-kana-2-1.2.7/src/pk2.cpp:7140: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 luku[20];
data/pekka-kana-2-1.2.7/src/pk2.cpp:7978: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 buffer[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/pk2.cpp:8040:2:  [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant string.
	strcat(DATA_PATH, "/.pekka-kana-2/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:8049: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(settings.kieli,"english.txt");
data/pekka-kana-2-1.2.7/src/sound.cpp:37:1:  [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 playingMusic[_MAX_PATH] = "";
data/pekka-kana-2-1.2.7/src/sprite.cpp:635: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 kuva[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/sprite.cpp:647: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 versio[4];
data/pekka-kana-2-1.2.7/src/sprite.h:263: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		kuvatiedosto[13];								// .BMP jossa ovat spriten grafiikat
data/pekka-kana-2-1.2.7/src/sprite.h:265: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		aanitiedostot[7][13];							// ��nitehostetiedostot
data/pekka-kana-2-1.2.7/src/sprite.h:278: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		nimi[30];										// spriten nimi (n�kyy editorissa)
data/pekka-kana-2-1.2.7/src/sprite.h:295: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		muutos_sprite[13];								// Toinen sprite joksi t�m� sprite voi muuttua
data/pekka-kana-2-1.2.7/src/sprite.h:296: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		bonus_sprite[13];								// Spriten bonuksena j�tt�m� k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:297: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		ammus1_sprite[13];								// Spriten ammuksena 1 k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:298: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		ammus2_sprite[13];								// Spriten ammuksena 2 k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:305: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		kuvatiedosto[13];								// .BMP jossa ovat spriten grafiikat
data/pekka-kana-2-1.2.7/src/sprite.h: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		aanitiedostot[7][13];							// ��nitehostetiedostot
data/pekka-kana-2-1.2.7/src/sprite.h:320: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		nimi[30];										// spriten nimi (n�kyy editorissa)
data/pekka-kana-2-1.2.7/src/sprite.h:344: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		muutos_sprite[13];								// Toinen sprite joksi t�m� sprite voi muuttua
data/pekka-kana-2-1.2.7/src/sprite.h:345: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		bonus_sprite[13];								// Spriten bonuksena j�tt�m� k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:346: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		ammus1_sprite[13];								// Spriten ammuksena 1 k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:347: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		ammus2_sprite[13];								// Spriten ammuksena 2 k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:354: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		kuvatiedosto[13];								// .BMP jossa ovat spriten grafiikat
data/pekka-kana-2-1.2.7/src/sprite.h:356: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		aanitiedostot[7][13];							// ��nitehostetiedostot
data/pekka-kana-2-1.2.7/src/sprite.h:369: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		nimi[30];										// spriten nimi (n�kyy editorissa)
data/pekka-kana-2-1.2.7/src/sprite.h:393: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		muutos_sprite[13];								// Toinen sprite joksi t�m� sprite voi muuttua
data/pekka-kana-2-1.2.7/src/sprite.h:394: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		bonus_sprite[13];								// Spriten bonuksena j�tt�m� k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:395: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		ammus1_sprite[13];								// Spriten ammuksena 1 k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:396: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		ammus2_sprite[13];								// Spriten ammuksena 2 k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:412: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		kuvatiedosto[100];								// bmp path
data/pekka-kana-2-1.2.7/src/sprite.h:413: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		aanitiedostot[7][100];							// sound path (max 7)
data/pekka-kana-2-1.2.7/src/sprite.h:428: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		nimi[30];										// name
data/pekka-kana-2-1.2.7/src/sprite.h:453: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		muutos_sprite[100];								// another sprite that this sprite may change
data/pekka-kana-2-1.2.7/src/sprite.h:454: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		bonus_sprite[100];								// bonus that this sprite gives
data/pekka-kana-2-1.2.7/src/sprite.h:455: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		ammus1_sprite[100];								// ammo 1 sprite
data/pekka-kana-2-1.2.7/src/sprite.h:456: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		ammus2_sprite[100];								// ammo 2 sprite
data/pekka-kana-2-1.2.7/src/sprite.h:484: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		versio[6];
data/pekka-kana-2-1.2.7/src/sprite.h:486: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		tiedosto[255];
data/pekka-kana-2-1.2.7/src/sprite.h:493: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		kuvatiedosto[100];								// .BMP jossa ovat spriten grafiikat
data/pekka-kana-2-1.2.7/src/sprite.h:497: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		aanitiedostot[MAX_AANIA][100];					// ��nitehostetiedostot
data/pekka-kana-2-1.2.7/src/sprite.h:514: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		nimi[30];										// spriten nimi (n�kyy editorissa)
data/pekka-kana-2-1.2.7/src/sprite.h:544: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		muutos_sprite[100];								// Toinen sprite joksi t�m� sprite voi muuttua
data/pekka-kana-2-1.2.7/src/sprite.h:545: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		bonus_sprite[100];								// Spriten bonuksena j�tt�m� k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:546: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		ammus1_sprite[100];								// Spriten ammuksena 1 k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/sprite.h:547: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		ammus2_sprite[100];								// Spriten ammuksena 2 k�ytt�m� sprite
data/pekka-kana-2-1.2.7/src/utils.cpp:51:2:  [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(ext, ".png");
data/pekka-kana-2-1.2.7/src/utils.cpp:61:4:  [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(ext, ".bmp");
data/pekka-kana-2-1.2.7/src/utils.cpp:85:53:  [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.
int PisteUtils_Scandir(const char* type, char* dir, char (*list)[_MAX_PATH], int length){
data/pekka-kana-2-1.2.7/src/utils.cpp:90: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 buffer[260];
data/pekka-kana-2-1.2.7/src/utils.cpp:121:53:  [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.
int PisteUtils_Scandir(const char* type, char* dir, char (*list)[_MAX_PATH], int length){
data/pekka-kana-2-1.2.7/src/utils.cpp:123: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 ext[128];
data/pekka-kana-2-1.2.7/src/utils.cpp:147: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 shell[_MAX_PATH];
data/pekka-kana-2-1.2.7/src/utils.cpp:148:2:  [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(shell,"mkdir -p ");
data/pekka-kana-2-1.2.7/src/utils.h:23:57:  [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.
int     PisteUtils_Scandir(const char* type, char* dir, char (*list)[_MAX_PATH], int length);
data/pekka-kana-2-1.2.7/src/font.cpp:117: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).
	char_count = strlen(param_file->Hae_Teksti(i));
data/pekka-kana-2-1.2.7/src/language.cpp:32:3:  [1] (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 character.
		strcpy(tekstit[i],"");
data/pekka-kana-2-1.2.7/src/language.cpp:33:3:  [1] (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 character.
		strcpy(otsikot[i],"");
data/pekka-kana-2-1.2.7/src/language.cpp:42:3:  [1] (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 character.
		strcpy(tekstit[i],"");
data/pekka-kana-2-1.2.7/src/language.cpp:43:3:  [1] (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 character.
		strcpy(otsikot[i],"");
data/pekka-kana-2-1.2.7/src/language.cpp:61:3:  [1] (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 character.
		strcpy(tekstit[i],"");
data/pekka-kana-2-1.2.7/src/language.cpp:62:3:  [1] (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 character.
		strcpy(otsikot[i],"");
data/pekka-kana-2-1.2.7/src/language.cpp:103:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
				if (read != LUE_SKIP){
data/pekka-kana-2-1.2.7/src/language.cpp:113:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
				if (read != LUE_SKIP && !(mjono_index == 0 && merkki == ' ')){
data/pekka-kana-2-1.2.7/src/language.h:32:8:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		int  read;
data/pekka-kana-2-1.2.7/src/log.cpp:45:31:  [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).
		fwrite(mjono,	sizeof(char),	strlen(mjono),  tiedosto);
data/pekka-kana-2-1.2.7/src/map.cpp:122:3:  [1] (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 character.
		strcpy(this->protot[i],"");
data/pekka-kana-2-1.2.7/src/map.cpp:402:7:  [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 (strlen(this->protot[i]) > 0)
data/pekka-kana-2-1.2.7/src/map.cpp:412:7:  [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 (strlen(this->protot[i]) > 0)
data/pekka-kana-2-1.2.7/src/map.cpp:533:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read ((char *)versio, sizeof (versio));
data/pekka-kana-2-1.2.7/src/map.cpp:585:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read ((char *)versio, sizeof (versio));
data/pekka-kana-2-1.2.7/src/map.cpp:747:3:  [1] (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 character.
		strcpy(this->protot[i],"");
data/pekka-kana-2-1.2.7/src/map.cpp:750:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->versio,		sizeof(versio));
data/pekka-kana-2-1.2.7/src/map.cpp:751:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->palikka_bmp,	sizeof(palikka_bmp));
data/pekka-kana-2-1.2.7/src/map.cpp:752:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->taustakuva,	sizeof(taustakuva));
data/pekka-kana-2-1.2.7/src/map.cpp:753:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->musiikki,		sizeof(musiikki));
data/pekka-kana-2-1.2.7/src/map.cpp:754:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->nimi,			sizeof(nimi));
data/pekka-kana-2-1.2.7/src/map.cpp:755:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->tekija,		sizeof(tekija));
data/pekka-kana-2-1.2.7/src/map.cpp:757:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:760:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:763:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:766:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:769:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:772:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:775:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:778:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:781:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:784:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read((char*)this->taustat,		sizeof(taustat));
data/pekka-kana-2-1.2.7/src/map.cpp:785:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read((char*)this->seinat,		sizeof(seinat));
data/pekka-kana-2-1.2.7/src/map.cpp:786:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read((char*)this->spritet,		sizeof(spritet));
data/pekka-kana-2-1.2.7/src/map.cpp:789:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		tiedosto->read(this->protot[i],sizeof(protot[i]));
data/pekka-kana-2-1.2.7/src/map.cpp:818:3:  [1] (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 character.
		strcpy(this->protot[i],"");
data/pekka-kana-2-1.2.7/src/map.cpp:821:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->versio,		sizeof(versio));
data/pekka-kana-2-1.2.7/src/map.cpp:822:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->palikka_bmp,	sizeof(palikka_bmp));
data/pekka-kana-2-1.2.7/src/map.cpp:823:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->taustakuva,	sizeof(taustakuva));
data/pekka-kana-2-1.2.7/src/map.cpp:824:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->musiikki,		sizeof(musiikki));
data/pekka-kana-2-1.2.7/src/map.cpp:825:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->nimi,			sizeof(nimi));
data/pekka-kana-2-1.2.7/src/map.cpp:826:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(this->tekija,		sizeof(tekija));
data/pekka-kana-2-1.2.7/src/map.cpp:828:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:832:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:836:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:840:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:844:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:848:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:852:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:856:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:860:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:864:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:868:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:872:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:877:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:881:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		tiedosto->read(protot[i],sizeof(protot[i]));
data/pekka-kana-2-1.2.7/src/map.cpp:889:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); aloitus_x = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:890:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); aloitus_y = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:891:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); leveys    = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:892:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); korkeus   = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:895:14:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			tiedosto->read(tile, sizeof(tile));
data/pekka-kana-2-1.2.7/src/map.cpp:901:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); aloitus_x = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:902:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); aloitus_y = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:903:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); leveys    = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:904:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); korkeus   = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:907:14:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			tiedosto->read(tile, sizeof(tile));
data/pekka-kana-2-1.2.7/src/map.cpp:913:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); aloitus_x = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:914:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); aloitus_y = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:915:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); leveys    = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:916:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(luku, sizeof(luku)); korkeus   = atol(luku); memset(luku, 0, sizeof(luku));
data/pekka-kana-2-1.2.7/src/map.cpp:919:14:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			tiedosto->read(tile, sizeof(tile));
data/pekka-kana-2-1.2.7/src/map.cpp:963:3:  [1] (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 character.
		strcpy(this->protot[i],"");
data/pekka-kana-2-1.2.7/src/map.cpp:1001:2:  [1] (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 character.
	strcpy(file,"");
data/pekka-kana-2-1.2.7/src/map.cpp:1050:2:  [1] (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 character.
	strcpy(file,"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:666:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read((char*)versio, 4);
data/pekka-kana-2-1.2.7/src/pk2.cpp:674:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		tiedosto->read((char*)&settings, sizeof(settings));
data/pekka-kana-2-1.2.7/src/pk2.cpp:720:3:  [1] (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 character.
		strcpy(episodipisteet.top_pelaajat[i]," ");
data/pekka-kana-2-1.2.7/src/pk2.cpp:721:3:  [1] (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 character.
		strcpy(episodipisteet.nopeimmat_pelaajat[i]," ");
data/pekka-kana-2-1.2.7/src/pk2.cpp:725:2:  [1] (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 character.
	strcpy(episodipisteet.episodin_top_pelaaja," ");
data/pekka-kana-2-1.2.7/src/pk2.cpp:759:2:  [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant character.
	strcat(buffer, "/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:771:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read ((char *)versio, 4);
data/pekka-kana-2-1.2.7/src/pk2.cpp:774:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		tiedosto->read ((char *)&episodipisteet, sizeof (episodipisteet));
data/pekka-kana-2-1.2.7/src/pk2.cpp:786:2:  [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant character.
	strcat(buffer, "/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1002:2:  [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant character.
	strcat(uusi_tiedosto, "/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1013:2:  [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant character.
	strcat(uusi_tiedosto, "/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1052:3:  [1] (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 character.
		strcpy(jaksot[i].nimi,"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1053:3:  [1] (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 character.
		strcpy(jaksot[i].tiedosto,"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1071:2:  [1] (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 character.
	strcpy(hakemisto,"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1106:16:  [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 apituus = strlen(a);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1107:16:  [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 bpituus = strlen(b);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1166:3:  [1] (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 character.
		strcpy(episodit[i],"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1180:3:  [1] (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 character.
		strcpy(tallennukset[i].episodi," ");
data/pekka-kana-2-1.2.7/src/pk2.cpp:1210:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read(versio,	sizeof(versio));
data/pekka-kana-2-1.2.7/src/pk2.cpp:1213:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		tiedosto->read(lkmc, sizeof(lkmc));
data/pekka-kana-2-1.2.7/src/pk2.cpp:1217:14:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			tiedosto->read ((char *)&tallennukset[i], sizeof (tallennukset[i]));
data/pekka-kana-2-1.2.7/src/pk2.cpp:1628: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).
	int pituus = strlen(teksti);
data/pekka-kana-2-1.2.7/src/pk2.cpp:1648: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).
	int pituus = strlen(teksti);
data/pekka-kana-2-1.2.7/src/pk2.cpp:2327:3:  [1] (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 character.
		strcpy(kartta->protot[i],"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2363:4:  [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant character.
			strcat(testipolku,"/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2375:5:  [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination
  [MS-banned] (CWE-120). Consider using strcat_s, strncat, strlcat, or
  snprintf (warning: strncat is easily misused). Risk is low because the
  source is a constant character.
				strcat(testipolku,"/");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2504:4:  [1] (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 character.
			strcpy(polku,"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2509:5:  [1] (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 character.
				strcpy(polku,"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:2577:2:  [1] (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 character.
	strcpy(polku,"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5005:5:  [1] (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 character.
				strcpy(episodi,"");
data/pekka-kana-2-1.2.7/src/pk2.cpp:5884:20:  [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 ilm_pituus = strlen(ilmoitus) * 8 + 8; // 300
data/pekka-kana-2-1.2.7/src/pk2.cpp:6086: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).
	int pituus = strlen(teksti)*15;
data/pekka-kana-2-1.2.7/src/pk2.cpp:6204:21:  [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).
		menu_nimi_index = strlen(pelaajan_nimi);//   0;
data/pekka-kana-2-1.2.7/src/pk2.cpp:6261:22:  [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 nameSize = (int)strlen(pelaajan_nimi);
data/pekka-kana-2-1.2.7/src/pk2.cpp:6912:41:  [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 (PK_Piirra_Menut_Valinta(next,530-(strlen(next)*16/*font weight*/),my)){
data/pekka-kana-2-1.2.7/src/pk2.cpp:8037:2:  [1] (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 character.
	strcpy(tyohakemisto,".");
data/pekka-kana-2-1.2.7/src/sprite.cpp:28:2:  [1] (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 character.
	strcpy(tiedosto,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:29:2:  [1] (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 character.
	strcpy(kuvatiedosto,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:30:2:  [1] (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 character.
	strcpy(nimi, "");
data/pekka-kana-2-1.2.7/src/sprite.cpp:31:2:  [1] (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 character.
	strcpy(this->muutos_sprite,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:32:2:  [1] (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 character.
	strcpy(this->bonus_sprite,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:33:2:  [1] (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 character.
	strcpy(this->ammus1_sprite,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:34:2:  [1] (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 character.
	strcpy(this->ammus2_sprite,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:37:3:  [1] (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 character.
		strcpy(aanitiedostot[aani], "");
data/pekka-kana-2-1.2.7/src/sprite.cpp:196:2:  [1] (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 character.
	strcpy(tiedosto,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:197:2:  [1] (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 character.
	strcpy(kuvatiedosto,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:198:2:  [1] (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 character.
	strcpy(nimi, "");
data/pekka-kana-2-1.2.7/src/sprite.cpp:199:2:  [1] (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 character.
	strcpy(muutos_sprite,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:200:2:  [1] (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 character.
	strcpy(bonus_sprite,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:201:2:  [1] (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 character.
	strcpy(ammus1_sprite,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:202:2:  [1] (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 character.
	strcpy(ammus2_sprite,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:205:3:  [1] (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 character.
		strcpy(aanitiedostot[aani], "");
data/pekka-kana-2-1.2.7/src/sprite.cpp:636:2:  [1] (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 character.
	strcpy(kuva,"");
data/pekka-kana-2-1.2.7/src/sprite.cpp:655:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	tiedosto->read ((char *)versio, 4);
data/pekka-kana-2-1.2.7/src/sprite.cpp:660:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		tiedosto->read ((char *)&proto, sizeof (proto));
data/pekka-kana-2-1.2.7/src/sprite.cpp:668:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		tiedosto->read ((char *)&proto, sizeof (proto));
data/pekka-kana-2-1.2.7/src/sprite.cpp:676:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		tiedosto->read ((char *)&proto, sizeof (proto));
data/pekka-kana-2-1.2.7/src/sprite.cpp:684:13:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		tiedosto->read ((char *)&proto, sizeof (proto));
data/pekka-kana-2-1.2.7/src/utils.cpp:31: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 len = strlen(string);

ANALYSIS SUMMARY:

Hits = 590
Lines analyzed = 14685 in approximately 0.42 seconds (35330 lines/second)
Physical Source Lines of Code (SLOC) = 11223
Hits@level = [0]  39 [1] 134 [2] 257 [3]   2 [4] 196 [5]   1
Hits@level+ = [0+] 629 [1+] 590 [2+] 456 [3+] 199 [4+] 197 [5+]   1
Hits/KSLOC@level+ = [0+] 56.0456 [1+] 52.5706 [2+] 40.6308 [3+] 17.7314 [4+] 17.5532 [5+] 0.0891027
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.