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/sqliteodbc-0.9998/adddsn.c
Examining data/sqliteodbc-0.9998/fixup.c
Examining data/sqliteodbc-0.9998/mkopc.c
Examining data/sqliteodbc-0.9998/mkopc3.c
Examining data/sqliteodbc-0.9998/sqliteodbc.c
Examining data/sqliteodbc-0.9998/sqliteodbc.h
Examining data/sqliteodbc-0.9998/sqlite3odbc.c
Examining data/sqliteodbc-0.9998/sqlite3odbc.h
Examining data/sqliteodbc-0.9998/sqlite4odbc.c
Examining data/sqliteodbc-0.9998/sqlite4odbc.h
Examining data/sqliteodbc-0.9998/inst.c
Examining data/sqliteodbc-0.9998/resourceos2.h
Examining data/sqliteodbc-0.9998/SQLiteODBCInstaller.c
Examining data/sqliteodbc-0.9998/blobtoxy.c
Examining data/sqliteodbc-0.9998/impexp.c
Examining data/sqliteodbc-0.9998/impexp.h
Examining data/sqliteodbc-0.9998/csvtable.c
Examining data/sqliteodbc-0.9998/zipfile.c
Examining data/sqliteodbc-0.9998/xpath.c
Examining data/sqliteodbc-0.9998/sqlite+tcc.c
Examining data/sqliteodbc-0.9998/missing/ini.h
Examining data/sqliteodbc-0.9998/missing/log.h
Examining data/sqliteodbc-0.9998/tccex/obench.c
Examining data/sqliteodbc-0.9998/tccex/samplext.c
Examining data/sqliteodbc-0.9998/tccex/sbench.c
Examining data/sqliteodbc-0.9998/tccex/sqlite.c
Examining data/sqliteodbc-0.9998/tccex/sqlite3.c

FINAL RESULTS:

data/sqliteodbc-0.9998/blobtoxy.c:201:9:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define vsnprintf   _vsnprintf
data/sqliteodbc-0.9998/blobtoxy.c:453: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(p, argv[i]);
data/sqliteodbc-0.9998/blobtoxy.c:462:6:  [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(p, bt->argv[1]);
data/sqliteodbc-0.9998/blobtoxy.c:467:6:  [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(p, bt->argv[3]);
data/sqliteodbc-0.9998/blobtoxy.c:1302:6:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
	n = vsnprintf(sb->str + sb->idx, sb->max - sb->idx, fmt, ap);
data/sqliteodbc-0.9998/csvtable.c:199: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(ret, in + 1);
data/sqliteodbc-0.9998/csvtable.c:204: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(ret, in);
data/sqliteodbc-0.9998/csvtable.c:266:7:  [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(p, q);
data/sqliteodbc-0.9998/csvtable.c:523: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(csv->sep, sep);
data/sqliteodbc-0.9998/csvtable.c:535: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(csv->quot, quot);
data/sqliteodbc-0.9998/csvtable.c:908: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(p, quot);
data/sqliteodbc-0.9998/csvtable.c:920: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(p, sep);
data/sqliteodbc-0.9998/impexp.c:369: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(sql, line);
data/sqliteodbc-0.9998/impexp.c:383: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(sql + nsql, line);
data/sqliteodbc-0.9998/impexp.c:684: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(text, (type == SQLITE_FLOAT) ? " TYPE=\"REAL\">" :
data/sqliteodbc-0.9998/impexp.c:687: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(text + k, (char *) sqlite3_value_text(argv[0]));
data/sqliteodbc-0.9998/impexp.c:1931:22:  [4] (race) access:
  This usually indicates a security flaw. If an attacker can change anything
  along the path between the call to access() and the file's actual use
  (e.g., by moving files), the attacker can exploit the race condition
  (CWE-362/CWE-367!). Set up the correct permissions (e.g., using setuid())
  and try to open the file directly.
    if ((hdr < 0) && access(filename, W_OK) == 0) {
data/sqliteodbc-0.9998/impexp.c:2367:3:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
		sprintf(buf,
data/sqliteodbc-0.9998/impexp.c:2382:2:  [4] (format) sprintf:
  Potential format string problem (CWE-134). Make format string constant.
	sprintf(buf,
data/sqliteodbc-0.9998/inst.c: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(firstpat, path);
data/sqliteodbc-0.9998/inst.c:128:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(buf, "%s\\%s", path, fdata.cFileName);
data/sqliteodbc-0.9998/inst.c:130:3:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		sprintf(buf, "Copy %s to %s failed", fdata.cFileName, path);
data/sqliteodbc-0.9998/inst.c:162:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(driver, "%s;Driver=%s;Setup=%s;",
data/sqliteodbc-0.9998/inst.c:174:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(driver, "%s;Driver=%s\\%s;Setup=%s\\%s;",
data/sqliteodbc-0.9998/inst.c:183:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(inst, "%s\\%s", path, dllname);
data/sqliteodbc-0.9998/inst.c:185:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(inst2, "%s\\%s", path, dll2name);
data/sqliteodbc-0.9998/inst.c:220:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(buf, "%s uninstalled.", drivername);
data/sqliteodbc-0.9998/inst.c:229:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(attr, "DSN=%s;Database=", dsname);
data/sqliteodbc-0.9998/inst.c:246:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(buf, "Copy %s to %s failed", dllname, inst);
data/sqliteodbc-0.9998/inst.c:254:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(buf, "Copy %s to %s failed", dll2name, inst2);
data/sqliteodbc-0.9998/inst.c:270:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(attr, "DSN=%s;Database=;", dsname);
data/sqliteodbc-0.9998/mkopc3.c:70:10:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function.
	    if (sscanf(line, "#define %s%d", name, &val) == 2) {
data/sqliteodbc-0.9998/mkopc3.c:78: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(tkn->name, name);
data/sqliteodbc-0.9998/mkopc3.c:119:7:  [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(tkn->name, name);
data/sqliteodbc-0.9998/mkopc3.c:143: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(opn->name, p);
data/sqliteodbc-0.9998/sqlite+tcc.c:153:8:  [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
  SYM2(snprintf, xsnprintf),
data/sqliteodbc-0.9998/sqlite+tcc.c:155:7:  [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
  SYM(snprintf),
data/sqliteodbc-0.9998/sqlite+tcc.c:320:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
      sprintf(msg, "API function '%s' not available.", symtab[i].name);
data/sqliteodbc-0.9998/sqlite3odbc.c:388: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(p, str);
data/sqliteodbc-0.9998/sqlite3odbc.c:412:9:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define vsnprintf   _vsnprintf
data/sqliteodbc-0.9998/sqlite3odbc.c:413:9:  [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define snprintf    _snprintf
data/sqliteodbc-0.9998/sqlite3odbc.c:413:21:  [4] (format) _snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define snprintf    _snprintf
data/sqliteodbc-0.9998/sqlite3odbc.c:623: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(p, str);
data/sqliteodbc-0.9998/sqlite3odbc.c:677: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(dsp->buffer + dsp->len, str);
data/sqliteodbc-0.9998/sqlite3odbc.c:1344:4:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
			fprintf(d->trace,
data/sqliteodbc-0.9998/sqlite3odbc.c:1427: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(q, p);
data/sqliteodbc-0.9998/sqlite3odbc.c:1683:28:  [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.
    __attribute__((format (printf, 3, 5)));
data/sqliteodbc-0.9998/sqlite3odbc.c:1700:10:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
	count = vsnprintf((char *) d->logmsg, sizeof (d->logmsg), msg, ap);
data/sqliteodbc-0.9998/sqlite3odbc.c:1723:28:  [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.
    __attribute__((format (printf, 3, 5)));
data/sqliteodbc-0.9998/sqlite3odbc.c:1740:10:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
	count = vsnprintf((char *) s->logmsg, sizeof (s->logmsg), msg, ap);
data/sqliteodbc-0.9998/sqlite3odbc.c:2194: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(p, typename);
data/sqliteodbc-0.9998/sqlite3odbc.c:2630:8:  [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(end, nsql);
data/sqliteodbc-0.9998/sqlite3odbc.c:3877:2:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
	fprintf(d->trace, err ? ": %s\n" : "\n", err);
data/sqliteodbc-0.9998/sqlite3odbc.c:3974:23:  [4] (race) access:
  This usually indicates a security flaw. If an attacker can change anything
  along the path between the call to access() and the file's actual use
  (e.g., by moving files), the attacker can exploit the race condition
  (CWE-362/CWE-367!). Set up the correct permissions (e.g., using setuid())
  and try to open the file directly.
    if (d->nocreat && access(name, 004) < 0) {
data/sqliteodbc-0.9998/sqlite3odbc.c:4133: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(path + plen, exts);
data/sqliteodbc-0.9998/sqlite3odbc.c:4358: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(tblname, q ? q : "");
data/sqliteodbc-0.9998/sqlite3odbc.c:4369: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(dbname, q ? q : "");
data/sqliteodbc-0.9998/sqlite3odbc.c:4381: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(p, colname);
data/sqliteodbc-0.9998/sqlite3odbc.c:4400:7:  [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(p, q + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:4407:7:  [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(p, colname);
data/sqliteodbc-0.9998/sqlite3odbc.c:4921: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(p->param, dp);
data/sqliteodbc-0.9998/sqlite3odbc.c:4954: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(np, dp);
data/sqliteodbc-0.9998/sqlite3odbc.c:8713: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((char *) sqlstate, sqlst);
data/sqliteodbc-0.9998/sqlite3odbc.c:8725: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((char *) msg, logmsg);
data/sqliteodbc-0.9998/sqlite3odbc.c:9004: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((char *) info, logmsg);
data/sqliteodbc-0.9998/sqlite3odbc.c:9880:6:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
	    fprintf(d->trace,
data/sqliteodbc-0.9998/sqlite3odbc.c:10817:3:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
		fprintf(d->trace,
data/sqliteodbc-0.9998/sqlite3odbc.c:10967:3:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
		fprintf(d->trace,
data/sqliteodbc-0.9998/sqlite3odbc.c:12740: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(buf, cdsn);
data/sqliteodbc-0.9998/sqlite3odbc.c:18210: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((char *) sqlState, s->sqlstate);
data/sqliteodbc-0.9998/sqlite3odbc.c:18213:6:  [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((char *) errmsg, (char *) s->logmsg);
data/sqliteodbc-0.9998/sqlite3odbc.c:18235: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((char *) sqlState, d->sqlstate);
data/sqliteodbc-0.9998/sqlite3odbc.c:18238:6:  [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((char *) errmsg, (char *) d->logmsg);
data/sqliteodbc-0.9998/sqlite3odbc.c:18447: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(tblname, q ? q : "");
data/sqliteodbc-0.9998/sqlite3odbc.c:18458: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(dbname, q ? q : "");
data/sqliteodbc-0.9998/sqlite3odbc.c:18470: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(p, colname);
data/sqliteodbc-0.9998/sqlite3odbc.c:18489:7:  [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(p, q + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:18496:7:  [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(p, colname);
data/sqliteodbc-0.9998/sqlite3odbc.c:19558: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(setupdlg->attr[KEY_STEPAPI].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19561: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(setupdlg->attr[KEY_NOTXN].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19564: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(setupdlg->attr[KEY_SHORTNAM].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19567: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(setupdlg->attr[KEY_LONGNAM].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19570: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(setupdlg->attr[KEY_NOCREAT].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19573: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(setupdlg->attr[KEY_NOWCHAR].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19576: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(setupdlg->attr[KEY_FKSUPPORT].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19579: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(setupdlg->attr[KEY_OEMCP].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19582: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(setupdlg->attr[KEY_BIGINT].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19585: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(setupdlg->attr[KEY_JDCONV].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19623: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(setupdlg->DSN, setupdlg->attr[KEY_DSN].attr);
data/sqliteodbc-0.9998/sqlite3odbc.c:19767: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(setupdlg->attr[KEY_STEPAPI].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19770: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(setupdlg->attr[KEY_NOTXN].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19773: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(setupdlg->attr[KEY_SHORTNAM].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19776: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(setupdlg->attr[KEY_LONGNAM].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19779: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(setupdlg->attr[KEY_NOCREAT].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19782: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(setupdlg->attr[KEY_NOWCHAR].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19785: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(setupdlg->attr[KEY_FKSUPPORT].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19788: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(setupdlg->attr[KEY_OEMCP].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19791: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(setupdlg->attr[KEY_BIGINT].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:19794: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(setupdlg->attr[KEY_JDCONV].attr,
data/sqliteodbc-0.9998/sqlite3odbc.c:20208:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(driver, "%s;Driver=%s;Setup=%s;",
data/sqliteodbc-0.9998/sqlite3odbc.c:20226:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(driver, "%s;Driver=%s\\%s;Setup=%s\\%s;",
data/sqliteodbc-0.9998/sqlite3odbc.c:20235:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(inst, "%s\\%s", path, dllname);
data/sqliteodbc-0.9998/sqlite3odbc.c:20243:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(buf, "%s replaced.", drivername);
data/sqliteodbc-0.9998/sqlite3odbc.c:20267:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(buf, "%s uninstalled.", drivername);
data/sqliteodbc-0.9998/sqlite3odbc.c:20273:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(attr, "DSN=%s;Database=;", dsname);
data/sqliteodbc-0.9998/sqlite3odbc.c:20290:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(buf, "Copy %s to %s failed.", dllbuf, inst);
data/sqliteodbc-0.9998/sqlite3odbc.c:20300:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(attr, "DSN=%s;Database=;", dsname);
data/sqliteodbc-0.9998/sqlite3odbc.c:20316:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(buf, "%s installed.", drivername);
data/sqliteodbc-0.9998/sqlite4odbc.c:367: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(p, str);
data/sqliteodbc-0.9998/sqlite4odbc.c:391:9:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define vsnprintf   _vsnprintf
data/sqliteodbc-0.9998/sqlite4odbc.c:392:9:  [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define snprintf    _snprintf
data/sqliteodbc-0.9998/sqlite4odbc.c:392:21:  [4] (format) _snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define snprintf    _snprintf
data/sqliteodbc-0.9998/sqlite4odbc.c:596: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(p, str);
data/sqliteodbc-0.9998/sqlite4odbc.c:650: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(dsp->buffer + dsp->len, str);
data/sqliteodbc-0.9998/sqlite4odbc.c:1314:4:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
			fprintf(d->trace,
data/sqliteodbc-0.9998/sqlite4odbc.c:1397: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(q, p);
data/sqliteodbc-0.9998/sqlite4odbc.c:1745:28:  [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.
    __attribute__((format (printf, 3, 5)));
data/sqliteodbc-0.9998/sqlite4odbc.c:1762:10:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
	count = vsnprintf((char *) d->logmsg, sizeof (d->logmsg), msg, ap);
data/sqliteodbc-0.9998/sqlite4odbc.c:1785:28:  [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.
    __attribute__((format (printf, 3, 5)));
data/sqliteodbc-0.9998/sqlite4odbc.c:1802:10:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
	count = vsnprintf((char *) s->logmsg, sizeof (s->logmsg), msg, ap);
data/sqliteodbc-0.9998/sqlite4odbc.c:2176: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(p, typename);
data/sqliteodbc-0.9998/sqlite4odbc.c:2610:8:  [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(end, nsql);
data/sqliteodbc-0.9998/sqlite4odbc.c:3591:2:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
	fprintf(d->trace, err ? ": %s\n" : "\n", err);
data/sqliteodbc-0.9998/sqlite4odbc.c:3785: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(path + plen, exts);
data/sqliteodbc-0.9998/sqlite4odbc.c:3989: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(tblname, q ? q : "");
data/sqliteodbc-0.9998/sqlite4odbc.c:3998: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(dbname, q ? q : "");
data/sqliteodbc-0.9998/sqlite4odbc.c:4007: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(p, colname);
data/sqliteodbc-0.9998/sqlite4odbc.c:4023:7:  [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(p, q + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:4027:7:  [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(p, colname);
data/sqliteodbc-0.9998/sqlite4odbc.c:4532: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(p->param, dp);
data/sqliteodbc-0.9998/sqlite4odbc.c:4565: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(np, dp);
data/sqliteodbc-0.9998/sqlite4odbc.c:8252: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((char *) sqlstate, sqlst);
data/sqliteodbc-0.9998/sqlite4odbc.c:8264: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((char *) msg, logmsg);
data/sqliteodbc-0.9998/sqlite4odbc.c:8543: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((char *) info, logmsg);
data/sqliteodbc-0.9998/sqlite4odbc.c:9420:6:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
	    fprintf(d->trace,
data/sqliteodbc-0.9998/sqlite4odbc.c:10204:3:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
		fprintf(d->trace,
data/sqliteodbc-0.9998/sqlite4odbc.c:10336:3:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
		fprintf(d->trace,
data/sqliteodbc-0.9998/sqlite4odbc.c:12102: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(buf, cdsn);
data/sqliteodbc-0.9998/sqlite4odbc.c:17549: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((char *) sqlState, s->sqlstate);
data/sqliteodbc-0.9998/sqlite4odbc.c:17552:6:  [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((char *) errmsg, (char *) s->logmsg);
data/sqliteodbc-0.9998/sqlite4odbc.c:17574: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((char *) sqlState, d->sqlstate);
data/sqliteodbc-0.9998/sqlite4odbc.c:17577:6:  [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((char *) errmsg, (char *) d->logmsg);
data/sqliteodbc-0.9998/sqlite4odbc.c:17772: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(tblname, q ? q : "");
data/sqliteodbc-0.9998/sqlite4odbc.c:17780: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(dbname, q ? q : "");
data/sqliteodbc-0.9998/sqlite4odbc.c:17789: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(p, colname);
data/sqliteodbc-0.9998/sqlite4odbc.c:17806:7:  [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(p, q + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:17810:7:  [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(p, colname);
data/sqliteodbc-0.9998/sqlite4odbc.c:18816: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(setupdlg->attr[KEY_STEPAPI].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:18819: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(setupdlg->attr[KEY_NOTXN].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:18822: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(setupdlg->attr[KEY_SHORTNAM].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:18825: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(setupdlg->attr[KEY_LONGNAM].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:18828: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(setupdlg->attr[KEY_NOCREAT].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:18831: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(setupdlg->attr[KEY_NOWCHAR].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:18834: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(setupdlg->attr[KEY_FKSUPPORT].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:18837: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(setupdlg->attr[KEY_OEMCP].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:18840: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(setupdlg->attr[KEY_BIGINT].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:18878: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(setupdlg->DSN, setupdlg->attr[KEY_DSN].attr);
data/sqliteodbc-0.9998/sqlite4odbc.c:19019: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(setupdlg->attr[KEY_STEPAPI].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:19022: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(setupdlg->attr[KEY_NOTXN].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:19025: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(setupdlg->attr[KEY_SHORTNAM].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:19028: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(setupdlg->attr[KEY_LONGNAM].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:19031: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(setupdlg->attr[KEY_NOCREAT].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:19034: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(setupdlg->attr[KEY_NOWCHAR].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:19037: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(setupdlg->attr[KEY_FKSUPPORT].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:19040: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(setupdlg->attr[KEY_OEMCP].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:19043: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(setupdlg->attr[KEY_BIGINT].attr,
data/sqliteodbc-0.9998/sqlite4odbc.c:19449:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(driver, "%s;Driver=%s;Setup=%s;",
data/sqliteodbc-0.9998/sqlite4odbc.c:19467:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(driver, "%s;Driver=%s\\%s;Setup=%s\\%s;",
data/sqliteodbc-0.9998/sqlite4odbc.c:19476:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(inst, "%s\\%s", path, dllname);
data/sqliteodbc-0.9998/sqlite4odbc.c:19484:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(buf, "%s replaced.", drivername);
data/sqliteodbc-0.9998/sqlite4odbc.c:19508:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(buf, "%s uninstalled.", drivername);
data/sqliteodbc-0.9998/sqlite4odbc.c:19514:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(attr, "DSN=%s;Database=;", dsname);
data/sqliteodbc-0.9998/sqlite4odbc.c:19531:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(buf, "Copy %s to %s failed.", dllbuf, inst);
data/sqliteodbc-0.9998/sqlite4odbc.c:19541:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(attr, "DSN=%s;Database=;", dsname);
data/sqliteodbc-0.9998/sqlite4odbc.c:19557:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(buf, "%s installed.", drivername);
data/sqliteodbc-0.9998/sqliteodbc.c:216: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(p, str);
data/sqliteodbc-0.9998/sqliteodbc.c:240:9:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define vsnprintf   _vsnprintf
data/sqliteodbc-0.9998/sqliteodbc.c:241:9:  [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define snprintf    _snprintf
data/sqliteodbc-0.9998/sqliteodbc.c:241:21:  [4] (format) _snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#define snprintf    _snprintf
data/sqliteodbc-0.9998/sqliteodbc.c:421: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(p, str);
data/sqliteodbc-0.9998/sqliteodbc.c:769:28:  [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.
    __attribute__((format (printf, 3, 5)));
data/sqliteodbc-0.9998/sqliteodbc.c:786:10:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
	count = vsnprintf((char *) d->logmsg, sizeof (d->logmsg), msg, ap);
data/sqliteodbc-0.9998/sqliteodbc.c:809:28:  [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.
    __attribute__((format (printf, 3, 5)));
data/sqliteodbc-0.9998/sqliteodbc.c:826:10:  [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
	count = vsnprintf((char *) s->logmsg, sizeof (s->logmsg), msg, ap);
data/sqliteodbc-0.9998/sqliteodbc.c:1355: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(p, typename);
data/sqliteodbc-0.9998/sqliteodbc.c:2697:2:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
	fprintf(d->trace, err ? ": %s\n" : "\n", err);
data/sqliteodbc-0.9998/sqliteodbc.c:2858: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(p, cols[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:2867:7:  [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(p, q + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:2872:7:  [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(p, cols[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:3542: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(p->param, dp);
data/sqliteodbc-0.9998/sqliteodbc.c:3577: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(np, dp);
data/sqliteodbc-0.9998/sqliteodbc.c:3743: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(p->strbuf, (*((unsigned char *) p->param)) ? "1" : "0");
data/sqliteodbc-0.9998/sqliteodbc.c:3776: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(p->strbuf, buf2);
data/sqliteodbc-0.9998/sqliteodbc.c:6928: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((char *) sqlstate, sqlst);
data/sqliteodbc-0.9998/sqliteodbc.c:6940: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((char *) msg, logmsg);
data/sqliteodbc-0.9998/sqliteodbc.c:7220: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((char *) info, logmsg);
data/sqliteodbc-0.9998/sqliteodbc.c:9960:10:  [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
	count = snprintf(buf, sizeof (buf),
data/sqliteodbc-0.9998/sqliteodbc.c:14363: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((char *) sqlState, s->sqlstate);
data/sqliteodbc-0.9998/sqliteodbc.c:14366:6:  [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((char *) errmsg, (char *) s->logmsg);
data/sqliteodbc-0.9998/sqliteodbc.c:14388: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((char *) sqlState, d->sqlstate);
data/sqliteodbc-0.9998/sqliteodbc.c:14391:6:  [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((char *) errmsg, (char *) d->logmsg);
data/sqliteodbc-0.9998/sqliteodbc.c:14564: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(p, cols[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:14573: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(p, q + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:14578: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(p, cols[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:14937: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(p, s->rows[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:15458: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(ofn.szFullFile, setupdlg->attr[KEY_DBNAME].attr);
data/sqliteodbc-0.9998/sqliteodbc.c:15462: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(setupdlg->attr[KEY_DBNAME].attr, ofn.szFullFile);
data/sqliteodbc-0.9998/sqliteodbc.c:15557: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(setupdlg->attr[KEY_NOWCHAR].attr,
data/sqliteodbc-0.9998/sqliteodbc.c:15560: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(setupdlg->attr[KEY_STEPAPI].attr,
data/sqliteodbc-0.9998/sqliteodbc.c:15563: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(setupdlg->attr[KEY_NOTXN].attr,
data/sqliteodbc-0.9998/sqliteodbc.c:15566: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(setupdlg->attr[KEY_LONGNAM].attr,
data/sqliteodbc-0.9998/sqliteodbc.c:15707: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(setupdlg->DSN, setupdlg->attr[KEY_DSN].attr);
data/sqliteodbc-0.9998/sqliteodbc.c:15825: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(setupdlg->attr[KEY_NOWCHAR].attr,
data/sqliteodbc-0.9998/sqliteodbc.c:15828: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(setupdlg->attr[KEY_STEPAPI].attr,
data/sqliteodbc-0.9998/sqliteodbc.c:15831: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(setupdlg->attr[KEY_NOTXN].attr,
data/sqliteodbc-0.9998/sqliteodbc.c:15834: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(setupdlg->attr[KEY_LONGNAM].attr,
data/sqliteodbc-0.9998/sqliteodbc.c:16292:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(driver, "%s;Driver=%s;Setup=%s;",
data/sqliteodbc-0.9998/sqliteodbc.c:16310:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(driver, "%s;Driver=%s\\%s;Setup=%s\\%s;",
data/sqliteodbc-0.9998/sqliteodbc.c:16319:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(inst, "%s\\%s", path, dllname);
data/sqliteodbc-0.9998/sqliteodbc.c:16327:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(buf, "%s replaced.", drivername);
data/sqliteodbc-0.9998/sqliteodbc.c:16351:7:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
		    sprintf(buf, "%s uninstalled.", drivername);
data/sqliteodbc-0.9998/sqliteodbc.c:16357:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(attr, "DSN=%s;Database=;", dsname);
data/sqliteodbc-0.9998/sqliteodbc.c:16374:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(buf, "Copy %s to %s failed.", dllbuf, inst);
data/sqliteodbc-0.9998/sqliteodbc.c:16384:2:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	sprintf(attr, "DSN=%s;Database=;", dsname);
data/sqliteodbc-0.9998/sqliteodbc.c:16400:6:  [4] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf.
	    sprintf(buf, "%s installed.", drivername);
data/sqliteodbc-0.9998/xpath.c:805: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(xp->expr, p);
data/sqliteodbc-0.9998/zipfile.c:45:8:  [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be exploited,
  and note that sprintf variations do not always \0-terminate (CWE-134). Use
  a constant for the format specification.
#undef snprintf
data/sqliteodbc-0.9998/zipfile.c:383: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(ret, in + 1);
data/sqliteodbc-0.9998/zipfile.c:388: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(ret, in);
data/sqliteodbc-0.9998/zipfile.c:442: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(vtab->tblname, argv[1]);
data/sqliteodbc-0.9998/zipfile.c:444: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(vtab->tblname, argv[2]);
data/sqliteodbc-0.9998/zipfile.c:2194:18:  [4] (buffer) sscanf:
  The scanf() family's %s operation, without a limit specification, permits
  buffer overflows (CWE-120, CWE-20). Specify a limit to %s, or use a
  different input function. If the scanf format is influenceable by an
  attacker, it's exploitable.
    if (!uri || (sscanf(uri,
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:700:12:  [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current directory
  may be used (CWE-829, CWE-20). Use registry entry or GetWindowsDirectory to
  find library path, if you aren't already.
				hDll = LoadLibrary( SourceFile );
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:762:12:  [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current directory
  may be used (CWE-829, CWE-20). Use registry entry or GetWindowsDirectory to
  find library path, if you aren't already.
				hDll = LoadLibrary( DestFile );
data/sqliteodbc-0.9998/sqlite+tcc.c:280:3:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
  EnterCriticalSection(&tcc_mutex);
data/sqliteodbc-0.9998/sqlite+tcc.c:389:9:  [3] (misc) InitializeCriticalSection:
  Exceptions can be thrown in low-memory situations. Use
  InitializeCriticalSectionAndSpinCount instead.
        InitializeCriticalSection(&tcc_mutex);
data/sqliteodbc-0.9998/sqlite3odbc.c:467:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&d->cs);		\
data/sqliteodbc-0.9998/sqlite3odbc.c:493:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&d->cs);		\
data/sqliteodbc-0.9998/sqlite3odbc.c:4071:28:  [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current directory
  may be used (CWE-829, CWE-20). Use registry entry or GetWindowsDirectory to
  find library path, if you aren't already.
	    HMODULE m = NULL, l = LoadLibrary("psapi.dll");
data/sqliteodbc-0.9998/sqlite3odbc.c:8159:2:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
	EnterCriticalSection(&env->cs);
data/sqliteodbc-0.9998/sqlite3odbc.c:8530:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite3odbc.c:8598:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite3odbc.c:11847:5:  [3] (misc) InitializeCriticalSection:
  Exceptions can be thrown in low-memory situations. Use
  InitializeCriticalSectionAndSpinCount instead.
    InitializeCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite3odbc.c:11889:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite3odbc.c:11950:2:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
	EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite3odbc.c:11971:5:  [3] (misc) InitializeCriticalSection:
  Exceptions can be thrown in low-memory situations. Use
  InitializeCriticalSectionAndSpinCount instead.
    InitializeCriticalSection(&d->cs);
data/sqliteodbc-0.9998/sqlite3odbc.c:12021:2:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
	EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite3odbc.c:20769:16:  [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current directory
  may be used (CWE-829, CWE-20). Use registry entry or GetWindowsDirectory to
  find library path, if you aren't already.
	sqlite3_dll = LoadLibrary(dll_names[i]);
data/sqliteodbc-0.9998/sqlite4odbc.c:444:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&d->cs);		\
data/sqliteodbc-0.9998/sqlite4odbc.c:472:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&d->cs);		\
data/sqliteodbc-0.9998/sqlite4odbc.c:3725:28:  [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current directory
  may be used (CWE-829, CWE-20). Use registry entry or GetWindowsDirectory to
  find library path, if you aren't already.
	    HMODULE m = NULL, l = LoadLibrary("psapi.dll");
data/sqliteodbc-0.9998/sqlite4odbc.c:7698:2:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
	EnterCriticalSection(&env->cs);
data/sqliteodbc-0.9998/sqlite4odbc.c:8069:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite4odbc.c:8137:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite4odbc.c:11215:5:  [3] (misc) InitializeCriticalSection:
  Exceptions can be thrown in low-memory situations. Use
  InitializeCriticalSectionAndSpinCount instead.
    InitializeCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite4odbc.c:11253:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite4odbc.c:11314:2:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
	EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite4odbc.c:11335:5:  [3] (misc) InitializeCriticalSection:
  Exceptions can be thrown in low-memory situations. Use
  InitializeCriticalSectionAndSpinCount instead.
    InitializeCriticalSection(&d->cs);
data/sqliteodbc-0.9998/sqlite4odbc.c:11385:2:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
	EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqlite4odbc.c:20005:16:  [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current directory
  may be used (CWE-829, CWE-20). Use registry entry or GetWindowsDirectory to
  find library path, if you aren't already.
	sqlite4_dll = LoadLibrary(dll_names[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:267:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&d->cs);		\
data/sqliteodbc-0.9998/sqliteodbc.c:293:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&d->cs);		\
data/sqliteodbc-0.9998/sqliteodbc.c:2787:28:  [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current directory
  may be used (CWE-829, CWE-20). Use registry entry or GetWindowsDirectory to
  find library path, if you aren't already.
	    HMODULE m = NULL, l = LoadLibrary("psapi.dll");
data/sqliteodbc-0.9998/sqliteodbc.c:6372:2:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
	EnterCriticalSection(&env->cs);
data/sqliteodbc-0.9998/sqliteodbc.c:6743:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqliteodbc.c:6811:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqliteodbc.c:8809:5:  [3] (misc) InitializeCriticalSection:
  Exceptions can be thrown in low-memory situations. Use
  InitializeCriticalSectionAndSpinCount instead.
    InitializeCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqliteodbc.c:8847:5:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
    EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqliteodbc.c:8916:2:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
	EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/sqliteodbc.c:8937:5:  [3] (misc) InitializeCriticalSection:
  Exceptions can be thrown in low-memory situations. Use
  InitializeCriticalSectionAndSpinCount instead.
    InitializeCriticalSection(&d->cs);
data/sqliteodbc-0.9998/sqliteodbc.c:8986:2:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
	EnterCriticalSection(&e->cs);
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:149: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 ArgName[SQLINST_MAX_BUFFER];
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:155: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			ArgValue[SQLINST_MAX_ARG_VALUE][SQLINST_MAX_BUFFER];
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:168: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 DirectDll[SQLINST_MAX_BUFFER];
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:191: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 g_ErrorMessage[SQLINST_MAX_ERROR_BUFFER];
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c: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 SystemPath[1024];	// System path (C:\Windows\System32)
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:654: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 WorkPath[1024];	// My own path
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:655: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 TempPath[1024];	// Temp path for working
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:656: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 TempFile[1024];	// TempFile
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:657: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 SourceFile[2048];	// SourceFile
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c: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 DestFile[2048];	// DestFile
data/sqliteodbc-0.9998/adddsn.c:36: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 errmsg[301];
data/sqliteodbc-0.9998/adddsn.c:69: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 tmp[1024], *p, *drv, *cfg, *msg;
data/sqliteodbc-0.9998/blobtoxy.c:463:6:  [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(p, "\".");
data/sqliteodbc-0.9998/blobtoxy.c:1355:31:  [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.
	type = string_to_type((const char *) sqlite3_value_text(args[1]));
data/sqliteodbc-0.9998/blobtoxy.c:1361:13:  [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.
    data = (char *) sqlite3_value_blob(args[0]);
data/sqliteodbc-0.9998/blobtoxy.c:1743:15:  [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.
    indata = (char *) sqlite3_value_blob(args[0]);
data/sqliteodbc-0.9998/csvtable.c:77: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 coltypes[1];	/**< column types */
data/sqliteodbc-0.9998/csvtable.c:172:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(pp, append, nappend);
data/sqliteodbc-0.9998/csvtable.c:502:9:  [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).
    f = fopen(filename, "rb");
data/sqliteodbc-0.9998/csvtable.c:504:9:  [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).
    f = fopen(filename, "r");
data/sqliteodbc-0.9998/csvtable.c:697:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy(line, csv->line, index);
data/sqliteodbc-0.9998/csvtable.c:860: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 *p, sep[32], quot[4];
data/sqliteodbc-0.9998/csvtable.c:1077: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 colname[64];
data/sqliteodbc-0.9998/csvtable.c:1091:6:  [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(colname, "column_%d", colmap[i]);
data/sqliteodbc-0.9998/csvtable.c:1402:14:  [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.
    tname = (char *) sqlite3_value_text(argv[0]);
data/sqliteodbc-0.9998/csvtable.c:1407:14:  [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.
    fname = (char *) sqlite3_value_text(argv[1]);
data/sqliteodbc-0.9998/csvtable.c:1413:20:  [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.
		   (argc > 4) ? (char *) sqlite3_value_text(argv[4]) : 0,
data/sqliteodbc-0.9998/csvtable.c:1414:20:  [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.
		   (argc > 5) ? (char *) sqlite3_value_text(argv[5]) : 0);
data/sqliteodbc-0.9998/csvtable.c:1544: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 colname[64];
data/sqliteodbc-0.9998/csvtable.c:1548:17:  [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 *type = (char *) sqlite3_value_text(argv[i + 6]);
data/sqliteodbc-0.9998/csvtable.c:1575:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(colname, "column_%d", colmap[i]);
data/sqliteodbc-0.9998/csvtable.c:1582:21:  [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 *type = (char *) sqlite3_value_text(argv[i + 6]);
data/sqliteodbc-0.9998/fixup.c:14: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 line[512];
data/sqliteodbc-0.9998/fixup.c:28:10:  [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).
	    f = fopen(argv[i] + off, "r");
data/sqliteodbc-0.9998/fixup.c:44:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(line, "%d", x * 100000 + y * 1000 + z);
data/sqliteodbc-0.9998/impexp.c:442:34:  [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.
	unsigned char *blob = (unsigned char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/impexp.c:557:34:  [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.
	unsigned char *blob = (unsigned char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/impexp.c:687:24:  [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.
	    strcpy(text + k, (char *) sqlite3_value_text(argv[0]));
data/sqliteodbc-0.9998/impexp.c:698:34:  [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.
	unsigned char *blob = (unsigned char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/impexp.c:712:6:  [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(text, " TYPE=\"BLOB\">");
data/sqliteodbc-0.9998/impexp.c:754:6:  [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(p, " TYPE=\"TEXT\">");
data/sqliteodbc-0.9998/impexp.c:829: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 fnbuf[MAX_PATH];
data/sqliteodbc-0.9998/impexp.c:834:18:  [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.
	    filename = (char *) sqlite3_value_text(args[0]);
data/sqliteodbc-0.9998/impexp.c:856:11:  [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).
    fin = fopen(filename, "r");
data/sqliteodbc-0.9998/impexp.c:874: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 fnbuf[MAX_PATH];
data/sqliteodbc-0.9998/impexp.c:900:11:  [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).
    fin = fopen(filename, "r");
data/sqliteodbc-0.9998/impexp.c:1088:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(pp, append, nappend);
data/sqliteodbc-0.9998/impexp.c:1124: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 buf[8];
data/sqliteodbc-0.9998/impexp.c:1249: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[256];
data/sqliteodbc-0.9998/impexp.c:1272:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buffer, "indent_xml(%d)", dd->indent);
data/sqliteodbc-0.9998/impexp.c:1358:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buffer, "indent_xml(%d)", dd->indent + 1);
data/sqliteodbc-0.9998/impexp.c:1386: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.
		    char mbuf[32];
data/sqliteodbc-0.9998/impexp.c:1388:7:  [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(mbuf, ",%d", dd->quote_mode);
data/sqliteodbc-0.9998/impexp.c:1416:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buffer, " || indent_xml(%d)", dd->indent);
data/sqliteodbc-0.9998/impexp.c:1506: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 fnbuf[MAX_PATH];
data/sqliteodbc-0.9998/impexp.c:1515:18:  [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.
	    filename = (char *) sqlite3_value_text(args[0]);
data/sqliteodbc-0.9998/impexp.c:1537:15:  [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).
    dd->out = fopen(filename, "w");
data/sqliteodbc-0.9998/impexp.c:1563:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
		dd->where = (char *) sqlite3_value_text(args[i + 1]);
data/sqliteodbc-0.9998/impexp.c:1603: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 fnbuf[MAX_PATH];
data/sqliteodbc-0.9998/impexp.c:1614:18:  [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.
	    filename = (char *) sqlite3_value_text(args[0]);
data/sqliteodbc-0.9998/impexp.c:1637:15:  [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).
    dd->out = fopen(filename, "wb");
data/sqliteodbc-0.9998/impexp.c:1639:15:  [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).
    dd->out = fopen(filename, "w");
data/sqliteodbc-0.9998/impexp.c:1657:19:  [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.
	    dd->where = (char *) sqlite3_value_text(args[i]);
data/sqliteodbc-0.9998/impexp.c:1663:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	    schema = (char *) sqlite3_value_text(args[i + 2]);
data/sqliteodbc-0.9998/impexp.c:1698: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 fnbuf[MAX_PATH];
data/sqliteodbc-0.9998/impexp.c:1709:18:  [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.
	    filename = (char *) sqlite3_value_text(args[0]);
data/sqliteodbc-0.9998/impexp.c:1746:15:  [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).
    dd->out = fopen(filename, openmode);
data/sqliteodbc-0.9998/impexp.c:1755:14:  [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.
	    root = (char *) sqlite3_value_text(args[i]);
data/sqliteodbc-0.9998/impexp.c:1762:19:  [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.
	    dd->where = (char *) sqlite3_value_text(args[i + 1]);
data/sqliteodbc-0.9998/impexp.c:1775:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	    schema = (char *) sqlite3_value_text(args[i + 3]);
data/sqliteodbc-0.9998/impexp.c:1810: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 fnbuf[MAX_PATH];
data/sqliteodbc-0.9998/impexp.c:1838:15:  [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).
    dd->out = fopen(filename, "w");
data/sqliteodbc-0.9998/impexp.c:1896: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 fnbuf[MAX_PATH];
data/sqliteodbc-0.9998/impexp.c:1929:15:  [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).
    dd->out = fopen(filename, "wb");
data/sqliteodbc-0.9998/impexp.c:1932:12:  [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).
	dd->out = fopen(filename, "a");
data/sqliteodbc-0.9998/impexp.c:1935:12:  [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).
	dd->out = fopen(filename, "w");
data/sqliteodbc-0.9998/impexp.c:1980: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 fnbuf[MAX_PATH];
data/sqliteodbc-0.9998/impexp.c:2011:15:  [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).
    dd->out = fopen(filename, append ? "a" : "w");
data/sqliteodbc-0.9998/impexp.c:2072: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 buf[64];
data/sqliteodbc-0.9998/impexp.c:2108:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buf, "\\u%04x", *string);
data/sqliteodbc-0.9998/impexp.c:2163:7:  [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(buf, "\\u%04lx", uc);
data/sqliteodbc-0.9998/impexp.c:2167:7:  [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(buf, "\\u%04lx", 0xd800 | ((uc >> 10) & 0x3ff));
data/sqliteodbc-0.9998/impexp.c:2169:7:  [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(buf, "\\u%04lx", 0xdc00 | (uc & 0x3ff));
data/sqliteodbc-0.9998/impexp.c:2171:7:  [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(buf, "\\ufffd");
data/sqliteodbc-0.9998/impexp.c:2213: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 buf[16];
data/sqliteodbc-0.9998/impexp.c:2275: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[256];
data/sqliteodbc-0.9998/impexp.c:2413: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 fnbuf[MAX_PATH];
data/sqliteodbc-0.9998/impexp.c:2418:18:  [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.
	    filename = (char *) sqlite3_value_text(args[0]);
data/sqliteodbc-0.9998/impexp.c:2440:11:  [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).
    out = fopen(filename, "w");
data/sqliteodbc-0.9998/impexp.c:2445: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.
	sql = (char *) sqlite3_value_text(args[1]);
data/sqliteodbc-0.9998/inst.c:33:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static char *DriverName[NUMDRVS] = {
data/sqliteodbc-0.9998/inst.c:39:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static char *DSName[NUMDRVS] = {
data/sqliteodbc-0.9998/inst.c:45:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static char *DriverDLL[NUMDRVS] = {
data/sqliteodbc-0.9998/inst.c:52:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static char *EngineDLL[NUMDRVS] = {
data/sqliteodbc-0.9998/inst.c:74: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 errmsg[301];
data/sqliteodbc-0.9998/inst.c:104: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 firstpat[MAX_PATH];
data/sqliteodbc-0.9998/inst.c:117: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(firstpat, "sqlite3_mod*.dll");
data/sqliteodbc-0.9998/inst.c:126: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 buf[1024];
data/sqliteodbc-0.9998/inst.c:155: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 path[301], driver[300], attr[300], inst[400], inst2[400];
data/sqliteodbc-0.9998/inst.c:214: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 buf[512];
data/sqliteodbc-0.9998/inst.c:244: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 buf[512];
data/sqliteodbc-0.9998/inst.c:252: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 buf[512];
data/sqliteodbc-0.9998/inst.c:302: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 path[300], *p;
data/sqliteodbc-0.9998/mkopc.c:12: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 line[512];
data/sqliteodbc-0.9998/mkopc.c:15:14:  [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).
    c_file = fopen("opcodes.c", "w");
data/sqliteodbc-0.9998/mkopc.c:16:14:  [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).
    h_file = fopen("opcodes.h", "w");
data/sqliteodbc-0.9998/mkopc3.c:47: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 line[512];
data/sqliteodbc-0.9998/mkopc3.c:48: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 used[1024];
data/sqliteodbc-0.9998/mkopc3.c:54:14:  [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).
    p_file = fopen("parse.h", "r");
data/sqliteodbc-0.9998/mkopc3.c:55:14:  [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).
    c_file = fopen("opcodes.c", "w");
data/sqliteodbc-0.9998/mkopc3.c:56:14:  [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).
    h_file = fopen("opcodes.h", "w");
data/sqliteodbc-0.9998/mkopc3.c:67: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 name[64];
data/sqliteodbc-0.9998/mkopc3.c:87:14:  [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).
    a_file = fopen("addopcodes.awk", "r");
data/sqliteodbc-0.9998/mkopc3.c:89:11:  [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).
	p_file = fopen("parse.h", "a");
data/sqliteodbc-0.9998/mkopc3.c:118:7:  [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(tkn->name, "TK_");
data/sqliteodbc-0.9998/sqlite+tcc.c:129:7:  [2] (misc) open:
  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).
  SYM(open),
data/sqliteodbc-0.9998/sqlite+tcc.c:295:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char *p = (char *) sqlite3_value_text(argv[i]);
data/sqliteodbc-0.9998/sqlite+tcc.c:308:30:  [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.
  if( tcc_compile_string(t, (char *) sqlite3_value_text(argv[0])) ){
data/sqliteodbc-0.9998/sqlite+tcc.c:318: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.
      char msg[512];
data/sqliteodbc-0.9998/sqlite3odbc.c:88:11:  [2] (misc) open:
  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).
    int (*open)(const char *p0, sqlite3 **p1);
data/sqliteodbc-0.9998/sqlite3odbc.c:158:49:  [2] (misc) open:
  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).
#define sqlite3_open                  dls_funcs.open
data/sqliteodbc-0.9998/sqlite3odbc.c:276:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buffer[1];	/**< String buffer. */
data/sqliteodbc-0.9998/sqlite3odbc.c:668:6:  [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(dsp->buffer, "OUT OF MEMORY");
data/sqliteodbc-0.9998/sqlite3odbc.c:728:6:  [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(dsp->buffer, "OUT OF MEMORY");
data/sqliteodbc-0.9998/sqlite3odbc.c:1077:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(cp, 0, str, len, NULL, 0);
data/sqliteodbc-0.9998/sqlite3odbc.c:1083:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(cp, 0, str, len, wstr, nchar);
data/sqliteodbc-0.9998/sqlite3odbc.c:1137:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(CP_UTF8, 0, str, len, NULL, 0);
data/sqliteodbc-0.9998/sqlite3odbc.c:1143:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(CP_UTF8, 0, str, len, wstr, nchar);
data/sqliteodbc-0.9998/sqlite3odbc.c:1179:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(cp, 0, str, len, NULL, 0);
data/sqliteodbc-0.9998/sqlite3odbc.c:1185:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(cp, 0, str, len, wstr, nchar);
data/sqliteodbc-0.9998/sqlite3odbc.c:1474:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
		char buffer[128];
data/sqliteodbc-0.9998/sqlite3odbc.c:1799:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    if (x && ((char **) x)[0]) {
data/sqliteodbc-0.9998/sqlite3odbc.c:1800:10:  [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.
	xfree(((char **) x)[0]);
data/sqliteodbc-0.9998/sqlite3odbc.c:1801: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 **) x)[0] = NULL;
data/sqliteodbc-0.9998/sqlite3odbc.c:1844: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 buf[128], *p, *end;
data/sqliteodbc-0.9998/sqlite3odbc.c:2348: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 clbr[4];
data/sqliteodbc-0.9998/sqlite3odbc.c:2538:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(q, sql, sqlLen);
data/sqliteodbc-0.9998/sqlite3odbc.c:2790: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 **rowp, *flagp, flags[128];
data/sqliteodbc-0.9998/sqlite3odbc.c:3126: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[8];
data/sqliteodbc-0.9998/sqlite3odbc.c:3241: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[4];
data/sqliteodbc-0.9998/sqlite3odbc.c:3387: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[16];
data/sqliteodbc-0.9998/sqlite3odbc.c:3689:18:  [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.
	    filename = (char *) sqlite3_value_text(args[0]);
data/sqliteodbc-0.9998/sqlite3odbc.c:3697:12:  [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).
	FILE *f = fopen(filename, "r");
data/sqliteodbc-0.9998/sqlite3odbc.c:3704:10:  [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).
	    f = fopen(wname, "rb");
data/sqliteodbc-0.9998/sqlite3odbc.c:3760: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.
	p = (char *) sqlite3_value_blob(args[0]);
data/sqliteodbc-0.9998/sqlite3odbc.c:3765:18:  [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.
	    filename = (char *) sqlite3_value_text(args[1]);
data/sqliteodbc-0.9998/sqlite3odbc.c:3774:16:  [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).
	    FILE *f = fopen(filename, "w");
data/sqliteodbc-0.9998/sqlite3odbc.c:3780:7:  [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).
		f = fopen(wname, "wb");
data/sqliteodbc-0.9998/sqlite3odbc.c:3927: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 expname[SQL_MAX_MESSAGE_LENGTH * 2];
data/sqliteodbc-0.9998/sqlite3odbc.c:4048: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 syncp[128];
data/sqliteodbc-0.9998/sqlite3odbc.c:4050: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(syncp, "PRAGMA synchronous = %8.8s;", spflag);
data/sqliteodbc-0.9998/sqlite3odbc.c:4054: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 jourp[128];
data/sqliteodbc-0.9998/sqlite3odbc.c:4056: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(jourp, "PRAGMA journal_mode = %16.16s;", jmode);
data/sqliteodbc-0.9998/sqlite3odbc.c:4065: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 pname[MAX_PATH];
data/sqliteodbc-0.9998/sqlite3odbc.c:4115: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 path[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite3odbc.c:4160: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 buf[512], msg[512];
data/sqliteodbc-0.9998/sqlite3odbc.c:4195: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 guess[64];
data/sqliteodbc-0.9998/sqlite3odbc.c:4205:6:  [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(guess, " (guessed from %d)", coltype);
data/sqliteodbc-0.9998/sqlite3odbc.c:4485: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.
		    char *p, buffer[128];
data/sqliteodbc-0.9998/sqlite3odbc.c:4884:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy(p->param, data, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:4936:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy((char *) p->param + p->offs, data, dlen);
data/sqliteodbc-0.9998/sqlite3odbc.c:5184:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		    memcpy(dp, p->param, p->len);
data/sqliteodbc-0.9998/sqlite3odbc.c:5188:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy(dp, p->param, p->len);
data/sqliteodbc-0.9998/sqlite3odbc.c:5282: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(p->strbuf, "%04d-%02d-%02d",
data/sqliteodbc-0.9998/sqlite3odbc.c:5303: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(p->strbuf, "%02d:%02d:%02d",
data/sqliteodbc-0.9998/sqlite3odbc.c:5346:6:  [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(p->strbuf, "%04d-%02d-%02d %02d:%02d:00.000",
data/sqliteodbc-0.9998/sqlite3odbc.c:5353:6:  [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(p->strbuf, "%04d-%02d-%02d %02d:%02d:%02d.000",
data/sqliteodbc-0.9998/sqlite3odbc.c:5361:6:  [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(p->strbuf, "%04d-%02d-%02d %02d:%02d:%02d.%03d",
data/sqliteodbc-0.9998/sqlite3odbc.c:6731: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 buf[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:6742:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buf, "%d", seq++);
data/sqliteodbc-0.9998/sqlite3odbc.c:6802:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
			    char buf[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:6805:8:  [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(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:7165: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.
				    char buf[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:7187:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", sqltype);
data/sqliteodbc-0.9998/sqlite3odbc.c:7189:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", mm);
data/sqliteodbc-0.9998/sqlite3odbc.c:7191:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", dd);
data/sqliteodbc-0.9998/sqlite3odbc.c:7199:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", isnullable);
data/sqliteodbc-0.9998/sqlite3odbc.c:7566: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 buf[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:7589:6:  [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(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:7739: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 buf[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:7762:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:8786: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 state[16];
data/sqliteodbc-0.9998/sqlite3odbc.c:8984: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 *) info)[0] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:9001: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 *) info)[buflen - 1] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:9141: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 dummybuf[16];
data/sqliteodbc-0.9998/sqlite3odbc.c:9786: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 strbuf[128], *cp;
data/sqliteodbc-0.9998/sqlite3odbc.c:9989:6:  [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(strbuf, "%04d-%02d-%02d",
data/sqliteodbc-0.9998/sqlite3odbc.c:10017:6:  [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(strbuf, "%02d:%02d:%02d",
data/sqliteodbc-0.9998/sqlite3odbc.c:10068:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(strbuf, "%04d-%02d-%02d %02d:%02d:00.000",
data/sqliteodbc-0.9998/sqlite3odbc.c:10075:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(strbuf, "%04d-%02d-%02d %02d:%02d:%02d.000",
data/sqliteodbc-0.9998/sqlite3odbc.c:10083:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(strbuf, "%04d-%02d-%02d %02d:%02d:%02d.%03d",
data/sqliteodbc-0.9998/sqlite3odbc.c:11059: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 dummyc[301];
data/sqliteodbc-0.9998/sqlite3odbc.c:11062: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 pathbuf[301], *drvname;
data/sqliteodbc-0.9998/sqlite3odbc.c:11752:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(flags, exists, sizeof (exists));
data/sqliteodbc-0.9998/sqlite3odbc.c:12154: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((char *) val, "main");
data/sqliteodbc-0.9998/sqlite3odbc.c:12693: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 buf[SQL_MAX_MESSAGE_LENGTH * 6], dbname[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite3odbc.c:12694: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 busy[SQL_MAX_MESSAGE_LENGTH / 4], tracef[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite3odbc.c:12695: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 loadext[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite3odbc.c:12696: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 sflag[32], spflag[32], ntflag[32], nwflag[32], biflag[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:12697: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 snflag[32], lnflag[32], ncflag[32], fkflag[32], jmode[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:12698: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 jdflag[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:12700: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 oemcp[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:12827:13:  [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).
	d->trace = fopen(tracef, "a");
data/sqliteodbc-0.9998/sqlite3odbc.c:13018: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 buf[SQL_MAX_MESSAGE_LENGTH * 8], dbname[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite3odbc.c:13019: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 dsn[SQL_MAX_MESSAGE_LENGTH], busy[SQL_MAX_MESSAGE_LENGTH / 4];
data/sqliteodbc-0.9998/sqlite3odbc.c:13020: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 tracef[SQL_MAX_MESSAGE_LENGTH], loadext[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite3odbc.c:13021: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 pwd[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite3odbc.c:13022: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 sflag[32], spflag[32], ntflag[32], snflag[32], lnflag[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:13023: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 ncflag[32], nwflag[32], fkflag[32], jmode[32], biflag[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:13024: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 jdflag[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:13186: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(dsn, "SQLite");
data/sqliteodbc-0.9998/sqlite3odbc.c:13224:13:  [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).
	d->trace = fopen(tracef, "a");
data/sqliteodbc-0.9998/sqlite3odbc.c:13346:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf((char *) s->cursorname, "CUR_%I64X", (SQLUBIGINT) *stmt);
data/sqliteodbc-0.9998/sqlite3odbc.c:13348:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf((char *) s->cursorname, "CUR_%016lX", (long) *stmt);
data/sqliteodbc-0.9998/sqlite3odbc.c:13924: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 **data, valdummy[16];
data/sqliteodbc-0.9998/sqlite3odbc.c:14216:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy(val, bin + offs, min(len, dlen));
data/sqliteodbc-0.9998/sqlite3odbc.c:14266: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.
		    ((char *) val)[0] = data[0][0];
data/sqliteodbc-0.9998/sqlite3odbc.c:14318:10:  [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 *) val)[0] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:14321: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 *) val)[0] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:14363: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.
		    ((char *) val)[zlen] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:14366: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 *) val)[zlen] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:14722:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char tmp[256], *t;
data/sqliteodbc-0.9998/sqlite3odbc.c:15273: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 buf[256];
data/sqliteodbc-0.9998/sqlite3odbc.c:15282:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", coln + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:15334: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 buf[256];
data/sqliteodbc-0.9998/sqlite3odbc.c:15360:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", sqltype);
data/sqliteodbc-0.9998/sqlite3odbc.c:15363:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", mm);
data/sqliteodbc-0.9998/sqlite3odbc.c:15365:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", dd);
data/sqliteodbc-0.9998/sqlite3odbc.c:15587: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 *quote[2] = { NULL, NULL };
data/sqliteodbc-0.9998/sqlite3odbc.c:15588:12:  [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 tcodes[32 * 32];
data/sqliteodbc-0.9998/sqlite3odbc.c:15594:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(tcode, "%d", type);
data/sqliteodbc-0.9998/sqlite3odbc.c:16271: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 buf[32];
data/sqliteodbc-0.9998/sqlite3odbc.c:16274:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:16622:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(s->row_status, s->row_status0,
data/sqliteodbc-0.9998/sqlite3odbc.c:16819:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(s->row_status, s->row_status0,
data/sqliteodbc-0.9998/sqlite3odbc.c:16898:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(rowstatus, s->row_status0,
data/sqliteodbc-0.9998/sqlite3odbc.c:18212:6:  [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((char *) errmsg, "[SQLite]");
data/sqliteodbc-0.9998/sqlite3odbc.c:18237:6:  [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((char *) errmsg, "[SQLite]");
data/sqliteodbc-0.9998/sqlite3odbc.c:18302: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 state[16];
data/sqliteodbc-0.9998/sqlite3odbc.c:19081: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 attr[MAXPATHLEN*4];
data/sqliteodbc-0.9998/sqlite3odbc.c:19088: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    DSN[MAXDSNAME];
data/sqliteodbc-0.9998/sqlite3odbc.c:19129:18:  [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 *str = (char *) attribs, *start, key[MAXKEYLEN];
data/sqliteodbc-0.9998/sqlite3odbc.c:19142:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(key, start, nkey);
data/sqliteodbc-0.9998/sqlite3odbc.c:19159:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(setupdlg->attr[elem].attr, start, end);
data/sqliteodbc-0.9998/sqlite3odbc.c:19183: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 buf[MAXPATHLEN], msg[MAXPATHLEN];
data/sqliteodbc-0.9998/sqlite3odbc.c:19517: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 item[MAXDSNAME];
data/sqliteodbc-0.9998/sqlite3odbc.c:19853:6:  [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(setupdlg->attr[KEY_DSN].attr, "DEFAULT");
data/sqliteodbc-0.9998/sqlite3odbc.c:19881: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[SQL_MAX_MESSAGE_LENGTH * 8];
data/sqliteodbc-0.9998/sqlite3odbc.c:19929: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 tracef[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite3odbc.c:19936:17:  [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).
	    d->trace = fopen(tracef, "a");
data/sqliteodbc-0.9998/sqlite3odbc.c:20162: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 errmsg[301];
data/sqliteodbc-0.9998/sqlite3odbc.c:20197: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 dllbuf[301], path[301], driver[300], attr[300], inst[400];
data/sqliteodbc-0.9998/sqlite3odbc.c:20241: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.
		    char buf[512];
data/sqliteodbc-0.9998/sqlite3odbc.c:20263: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 buf[512];
data/sqliteodbc-0.9998/sqlite3odbc.c:20288: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 buf[512];
data/sqliteodbc-0.9998/sqlite3odbc.c:20314: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 buf[512];
data/sqliteodbc-0.9998/sqlite3odbc.c:20542:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite3odbc.c:20550:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite3odbc.c:20558:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite3odbc.c:20565:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite3odbc.c:20573:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite3odbc.c:20581:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite3odbc.c:20589:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, syncPragma, sizeof (syncPragma));
data/sqliteodbc-0.9998/sqlite3odbc.c:20597:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, jmPragma, sizeof (jmPragma));
data/sqliteodbc-0.9998/sqlite3odbc.c:20610:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite3odbc.c:20724:13:  [2] (misc) open:
  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).
    DLS_ENT(open, dls_error),
data/sqliteodbc-0.9998/sqlite3odbc.c:20790: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[MAXPATHLEN], msg[MAXPATHLEN];
data/sqliteodbc-0.9998/sqlite3odbc.h:129: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 sqlstate[6];		/**< SQL state for SQLError() */
data/sqliteodbc-0.9998/sqlite3odbc.h:216: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 strbuf[64];	/**< String buffer for scalar data */
data/sqliteodbc-0.9998/sqlite3odbc.h:259: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 sqlstate[6];		/**< SQL state for SQLError() */
data/sqliteodbc-0.9998/sqlite4odbc.c:85:11:  [2] (misc) open:
  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).
    int (*open)(sqlite4_env *p0, const char *p1, sqlite4 **p2, ...);
data/sqliteodbc-0.9998/sqlite4odbc.c:151:49:  [2] (misc) open:
  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).
#define sqlite4_open                  dls_funcs.open
data/sqliteodbc-0.9998/sqlite4odbc.c:255:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buffer[1];	/**< String buffer. */
data/sqliteodbc-0.9998/sqlite4odbc.c:641:6:  [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(dsp->buffer, "OUT OF MEMORY");
data/sqliteodbc-0.9998/sqlite4odbc.c:701:6:  [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(dsp->buffer, "OUT OF MEMORY");
data/sqliteodbc-0.9998/sqlite4odbc.c:1047:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(cp, 0, str, len, NULL, 0);
data/sqliteodbc-0.9998/sqlite4odbc.c:1053:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(cp, 0, str, len, wstr, nchar);
data/sqliteodbc-0.9998/sqlite4odbc.c:1107:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(CP_UTF8, 0, str, len, NULL, 0);
data/sqliteodbc-0.9998/sqlite4odbc.c:1113:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(CP_UTF8, 0, str, len, wstr, nchar);
data/sqliteodbc-0.9998/sqlite4odbc.c:1149:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(cp, 0, str, len, NULL, 0);
data/sqliteodbc-0.9998/sqlite4odbc.c:1155:13:  [2] (buffer) MultiByteToWideChar:
  Requires maximum length in CHARACTERS, not bytes (CWE-120).
    nchar = MultiByteToWideChar(cp, 0, str, len, wstr, nchar);
data/sqliteodbc-0.9998/sqlite4odbc.c:1861:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    if (x && ((char **) x)[0]) {
data/sqliteodbc-0.9998/sqlite4odbc.c:1862:10:  [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.
	xfree(((char **) x)[0]);
data/sqliteodbc-0.9998/sqlite4odbc.c:1863: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 **) x)[0] = NULL;
data/sqliteodbc-0.9998/sqlite4odbc.c:1906: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 buf[128], *p, *end;
data/sqliteodbc-0.9998/sqlite4odbc.c:2330: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 clbr[4];
data/sqliteodbc-0.9998/sqlite4odbc.c:2518:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(q, sql, sqlLen);
data/sqliteodbc-0.9998/sqlite4odbc.c:2890: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[8];
data/sqliteodbc-0.9998/sqlite4odbc.c:2988: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[4];
data/sqliteodbc-0.9998/sqlite4odbc.c:3094: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[16];
data/sqliteodbc-0.9998/sqlite4odbc.c:3410:18:  [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.
	    filename = (char *) sqlite4_value_text(args[0], &nbytes);
data/sqliteodbc-0.9998/sqlite4odbc.c:3418:12:  [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).
	FILE *f = fopen(filename, "r");
data/sqliteodbc-0.9998/sqlite4odbc.c:3425:10:  [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).
	    f = fopen(wname, "rb");
data/sqliteodbc-0.9998/sqlite4odbc.c:3481: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.
	p = (char *) sqlite4_value_blob(args[0], &n);
data/sqliteodbc-0.9998/sqlite4odbc.c:3487:18:  [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.
	    filename = (char *) sqlite4_value_text(args[1], &nbytes);
data/sqliteodbc-0.9998/sqlite4odbc.c:3496:16:  [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).
	    FILE *f = fopen(filename, "w");
data/sqliteodbc-0.9998/sqlite4odbc.c:3502:7:  [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).
		f = fopen(wname, "wb");
data/sqliteodbc-0.9998/sqlite4odbc.c:3633: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 expname[SQL_MAX_MESSAGE_LENGTH * 2];
data/sqliteodbc-0.9998/sqlite4odbc.c:3702: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 syncp[128];
data/sqliteodbc-0.9998/sqlite4odbc.c:3704: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(syncp, "PRAGMA synchronous = %8.8s;", spflag);
data/sqliteodbc-0.9998/sqlite4odbc.c:3708: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 jourp[128];
data/sqliteodbc-0.9998/sqlite4odbc.c:3710: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(jourp, "PRAGMA journal_mode = %16.16s;", jmode);
data/sqliteodbc-0.9998/sqlite4odbc.c:3719: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 pname[MAX_PATH];
data/sqliteodbc-0.9998/sqlite4odbc.c:3768: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 path[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite4odbc.c:3805: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 buf[512], msg[512];
data/sqliteodbc-0.9998/sqlite4odbc.c:3840: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 guess[64];
data/sqliteodbc-0.9998/sqlite4odbc.c:3850:6:  [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(guess, " (guessed from %d)", coltype);
data/sqliteodbc-0.9998/sqlite4odbc.c:3883:11:  [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 *dn, *tn, *cn, *dummy[4];
data/sqliteodbc-0.9998/sqlite4odbc.c:4099: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.
		    char *p, buffer[128];
data/sqliteodbc-0.9998/sqlite4odbc.c:4495:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy(p->param, data, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:4547:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy((char *) p->param + p->offs, data, dlen);
data/sqliteodbc-0.9998/sqlite4odbc.c:4795:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		    memcpy(dp, p->param, p->len);
data/sqliteodbc-0.9998/sqlite4odbc.c:4799:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy(dp, p->param, p->len);
data/sqliteodbc-0.9998/sqlite4odbc.c:4874: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(p->strbuf, "%04d-%02d-%02d",
data/sqliteodbc-0.9998/sqlite4odbc.c:4886: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(p->strbuf, "%02d:%02d:%02d",
data/sqliteodbc-0.9998/sqlite4odbc.c:4905:6:  [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(p->strbuf, "%04d-%02d-%02d %02d:%02d:00.000",
data/sqliteodbc-0.9998/sqlite4odbc.c:4912:6:  [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(p->strbuf, "%04d-%02d-%02d %02d:%02d:%02d.000",
data/sqliteodbc-0.9998/sqlite4odbc.c:4920:6:  [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(p->strbuf, "%04d-%02d-%02d %02d:%02d:%02d.%03d",
data/sqliteodbc-0.9998/sqlite4odbc.c:6289: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 buf[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:6300:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buf, "%d", seq++);
data/sqliteodbc-0.9998/sqlite4odbc.c:6360:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
			    char buf[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:6363:8:  [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(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:6723: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.
				    char buf[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:6745:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", sqltype);
data/sqliteodbc-0.9998/sqlite4odbc.c:6747:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", mm);
data/sqliteodbc-0.9998/sqlite4odbc.c:6749:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", dd);
data/sqliteodbc-0.9998/sqlite4odbc.c:6757:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", isnullable);
data/sqliteodbc-0.9998/sqlite4odbc.c:7124: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 buf[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:7147:6:  [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(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:7297: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 buf[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:7320:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:8325: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 state[16];
data/sqliteodbc-0.9998/sqlite4odbc.c:8523: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 *) info)[0] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:8540: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 *) info)[buflen - 1] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:8680: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 dummybuf[16];
data/sqliteodbc-0.9998/sqlite4odbc.c:9326: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 strbuf[128], *cp;
data/sqliteodbc-0.9998/sqlite4odbc.c:9507: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(strbuf, "%04d-%02d-%02d",
data/sqliteodbc-0.9998/sqlite4odbc.c:9521: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(strbuf, "%02d:%02d:%02d",
data/sqliteodbc-0.9998/sqlite4odbc.c:9542:6:  [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(strbuf, "%04d-%02d-%02d %02d:%02d:00.000",
data/sqliteodbc-0.9998/sqlite4odbc.c:9549:6:  [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(strbuf, "%04d-%02d-%02d %02d:%02d:%02d.000",
data/sqliteodbc-0.9998/sqlite4odbc.c:9557:6:  [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(strbuf, "%04d-%02d-%02d %02d:%02d:%02d.%03d",
data/sqliteodbc-0.9998/sqlite4odbc.c:10427: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 dummyc[301];
data/sqliteodbc-0.9998/sqlite4odbc.c:10430: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 pathbuf[301], *drvname;
data/sqliteodbc-0.9998/sqlite4odbc.c:11120:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(flags, exists, sizeof (exists));
data/sqliteodbc-0.9998/sqlite4odbc.c:11518: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((char *) val, "main");
data/sqliteodbc-0.9998/sqlite4odbc.c:12056: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 buf[SQL_MAX_MESSAGE_LENGTH * 6], dbname[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite4odbc.c:12057: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 busy[SQL_MAX_MESSAGE_LENGTH / 4], tracef[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite4odbc.c:12058: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 loadext[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite4odbc.c:12059: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 sflag[32], spflag[32], ntflag[32], nwflag[32], biflag[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:12060: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 snflag[32], lnflag[32], ncflag[32], fkflag[32], jmode[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:12062: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 oemcp[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:12185:13:  [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).
	d->trace = fopen(tracef, "a");
data/sqliteodbc-0.9998/sqlite4odbc.c:12370: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 buf[SQL_MAX_MESSAGE_LENGTH * 6], dbname[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite4odbc.c:12371: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 dsn[SQL_MAX_MESSAGE_LENGTH], busy[SQL_MAX_MESSAGE_LENGTH / 4];
data/sqliteodbc-0.9998/sqlite4odbc.c:12372: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 tracef[SQL_MAX_MESSAGE_LENGTH], loadext[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite4odbc.c:12373: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 pwd[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite4odbc.c:12374: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 sflag[32], spflag[32], ntflag[32], snflag[32], lnflag[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:12375: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 ncflag[32], nwflag[32], fkflag[32], jmode[32], biflag[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:12529: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(dsn, "SQLite");
data/sqliteodbc-0.9998/sqlite4odbc.c:12566:13:  [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).
	d->trace = fopen(tracef, "a");
data/sqliteodbc-0.9998/sqlite4odbc.c:12686:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf((char *) s->cursorname, "CUR_%I64X", (SQLUBIGINT) *stmt);
data/sqliteodbc-0.9998/sqlite4odbc.c:12688:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf((char *) s->cursorname, "CUR_%016lX", (long) *stmt);
data/sqliteodbc-0.9998/sqlite4odbc.c:13266: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 **data, valdummy[16];
data/sqliteodbc-0.9998/sqlite4odbc.c:13558:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy(val, bin + offs, min(len, dlen));
data/sqliteodbc-0.9998/sqlite4odbc.c:13608: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.
		    ((char *) val)[0] = data[0][0];
data/sqliteodbc-0.9998/sqlite4odbc.c:13660:10:  [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 *) val)[0] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:13663: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 *) val)[0] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:13705: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.
		    ((char *) val)[zlen] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:13708: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 *) val)[zlen] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:14063:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char tmp[256], *t;
data/sqliteodbc-0.9998/sqlite4odbc.c:14612: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 buf[256];
data/sqliteodbc-0.9998/sqlite4odbc.c:14621:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", coln + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:14673: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 buf[256];
data/sqliteodbc-0.9998/sqlite4odbc.c:14699:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", sqltype);
data/sqliteodbc-0.9998/sqlite4odbc.c:14702:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", mm);
data/sqliteodbc-0.9998/sqlite4odbc.c:14704:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", dd);
data/sqliteodbc-0.9998/sqlite4odbc.c:14926: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 *quote[2] = { NULL, NULL };
data/sqliteodbc-0.9998/sqlite4odbc.c:14927:12:  [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 tcodes[32 * 32];
data/sqliteodbc-0.9998/sqlite4odbc.c:14933:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(tcode, "%d", type);
data/sqliteodbc-0.9998/sqlite4odbc.c:15610: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 buf[32];
data/sqliteodbc-0.9998/sqlite4odbc.c:15613:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:15961:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(s->row_status, s->row_status0,
data/sqliteodbc-0.9998/sqlite4odbc.c:16158:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(s->row_status, s->row_status0,
data/sqliteodbc-0.9998/sqlite4odbc.c:16237:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(rowstatus, s->row_status0,
data/sqliteodbc-0.9998/sqlite4odbc.c:17551:6:  [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((char *) errmsg, "[SQLite]");
data/sqliteodbc-0.9998/sqlite4odbc.c:17576:6:  [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((char *) errmsg, "[SQLite]");
data/sqliteodbc-0.9998/sqlite4odbc.c:17641: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 state[16];
data/sqliteodbc-0.9998/sqlite4odbc.c:18354: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 attr[MAXPATHLEN*4];
data/sqliteodbc-0.9998/sqlite4odbc.c:18361: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    DSN[MAXDSNAME];
data/sqliteodbc-0.9998/sqlite4odbc.c:18401:18:  [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 *str = (char *) attribs, *start, key[MAXKEYLEN];
data/sqliteodbc-0.9998/sqlite4odbc.c:18414:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(key, start, nkey);
data/sqliteodbc-0.9998/sqlite4odbc.c:18431:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(setupdlg->attr[elem].attr, start, end);
data/sqliteodbc-0.9998/sqlite4odbc.c:18455: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 buf[MAXPATHLEN], msg[MAXPATHLEN];
data/sqliteodbc-0.9998/sqlite4odbc.c:18775: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 item[MAXDSNAME];
data/sqliteodbc-0.9998/sqlite4odbc.c:19102:6:  [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(setupdlg->attr[KEY_DSN].attr, "DEFAULT");
data/sqliteodbc-0.9998/sqlite4odbc.c:19130: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[SQL_MAX_MESSAGE_LENGTH * 8];
data/sqliteodbc-0.9998/sqlite4odbc.c:19177: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 tracef[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqlite4odbc.c:19184:17:  [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).
	    d->trace = fopen(tracef, "a");
data/sqliteodbc-0.9998/sqlite4odbc.c:19403: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 errmsg[301];
data/sqliteodbc-0.9998/sqlite4odbc.c:19438: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 dllbuf[301], path[301], driver[300], attr[300], inst[400];
data/sqliteodbc-0.9998/sqlite4odbc.c:19482: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.
		    char buf[512];
data/sqliteodbc-0.9998/sqlite4odbc.c:19504: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 buf[512];
data/sqliteodbc-0.9998/sqlite4odbc.c:19529: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 buf[512];
data/sqliteodbc-0.9998/sqlite4odbc.c:19555: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 buf[512];
data/sqliteodbc-0.9998/sqlite4odbc.c:19780:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite4odbc.c:19788:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite4odbc.c:19796:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite4odbc.c:19803:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite4odbc.c:19811:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite4odbc.c:19819:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite4odbc.c:19827:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, syncPragma, sizeof (syncPragma));
data/sqliteodbc-0.9998/sqlite4odbc.c:19835:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, jmPragma, sizeof (jmPragma));
data/sqliteodbc-0.9998/sqlite4odbc.c:19848:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqlite4odbc.c:19962:13:  [2] (misc) open:
  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).
    DLS_ENT(open, dls_error),
data/sqliteodbc-0.9998/sqlite4odbc.c:20026: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[MAXPATHLEN], msg[MAXPATHLEN];
data/sqliteodbc-0.9998/sqlite4odbc.h:129: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 sqlstate[6];		/**< SQL state for SQLError() */
data/sqliteodbc-0.9998/sqlite4odbc.h:215: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 strbuf[64];	/**< String buffer for scalar data */
data/sqliteodbc-0.9998/sqlite4odbc.h:257: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 sqlstate[6];		/**< SQL state for SQLError() */
data/sqliteodbc-0.9998/sqliteodbc.c:885:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    if (x && ((char **) x)[0]) {
data/sqliteodbc-0.9998/sqliteodbc.c:886:10:  [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.
	xfree(((char **) x)[0]);
data/sqliteodbc-0.9998/sqliteodbc.c:887: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 **) x)[0] = NULL;
data/sqliteodbc-0.9998/sqliteodbc.c:938: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 buf[128], *p, *end;
data/sqliteodbc-0.9998/sqliteodbc.c:984:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(buf, "%.16g", value);
data/sqliteodbc-0.9998/sqliteodbc.c:994:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(buf, "%.16g", value);
data/sqliteodbc-0.9998/sqliteodbc.c:1506: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 clbr[4];
data/sqliteodbc-0.9998/sqliteodbc.c:1688:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(q, sql, sqlLen);
data/sqliteodbc-0.9998/sqliteodbc.c:1755:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		    memcpy(ncp, q - n, n);
data/sqliteodbc-0.9998/sqliteodbc.c:1960: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 **rowp, *flagp, flags[128];
data/sqliteodbc-0.9998/sqliteodbc.c:2171: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[8];
data/sqliteodbc-0.9998/sqliteodbc.c:2269: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[4];
data/sqliteodbc-0.9998/sqliteodbc.c:2375: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[16];
data/sqliteodbc-0.9998/sqliteodbc.c:2724: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 expname[MAX_PATH];
data/sqliteodbc-0.9998/sqliteodbc.c:2781: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 pname[MAX_PATH];
data/sqliteodbc-0.9998/sqliteodbc.c:3189: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 buf[128];
data/sqliteodbc-0.9998/sqliteodbc.c:3200: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(buf, "%04d-%02d-%02d %02d:%02d:%02d",
data/sqliteodbc-0.9998/sqliteodbc.c:3204: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(buf, "%04d-%02d-%02d", st.wYear, st.wMonth, st.wDay);
data/sqliteodbc-0.9998/sqliteodbc.c:3206: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(buf, "%02d:%02d:%02d", st.wHour, st.wMinute, st.wSecond);
data/sqliteodbc-0.9998/sqliteodbc.c:3227: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(buf, "%04d-%02d-%02d %02d:%02d:%02d",
data/sqliteodbc-0.9998/sqliteodbc.c:3231: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(buf, "%04d-%02d-%02d",
data/sqliteodbc-0.9998/sqliteodbc.c:3234: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(buf, "%02d:%02d:%02d", tm.tm_hour, tm.tm_min, tm.tm_sec);
data/sqliteodbc-0.9998/sqliteodbc.c:3275:22:  [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.
    for (i = 0, p = (char *) argv[0]; i < len; i++) {
data/sqliteodbc-0.9998/sqliteodbc.c:3335:42:  [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.
    len = sqlite_decode_binary((unsigned char *) argv[0],
data/sqliteodbc-0.9998/sqliteodbc.c:3511:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy(p->param, data, size);
data/sqliteodbc-0.9998/sqliteodbc.c:3559:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy((char *) p->param + p->offs, data, dlen);
data/sqliteodbc-0.9998/sqliteodbc.c:3747: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(p->strbuf, "%d", *((unsigned char *) p->param));
data/sqliteodbc-0.9998/sqliteodbc.c:3751: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(p->strbuf, "%d", *((char *) p->param));
data/sqliteodbc-0.9998/sqliteodbc.c:3754: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(p->strbuf, "%d", *((unsigned short *) p->param));
data/sqliteodbc-0.9998/sqliteodbc.c:3758: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(p->strbuf, "%d", *((short *) p->param));
data/sqliteodbc-0.9998/sqliteodbc.c:3763: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(p->strbuf, "%ld", *((long *) p->param));
data/sqliteodbc-0.9998/sqliteodbc.c:3790: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(p->strbuf, "%04d-%02d-%02d",
data/sqliteodbc-0.9998/sqliteodbc.c:3799: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(p->strbuf, "%02d:%02d:%02d",
data/sqliteodbc-0.9998/sqliteodbc.c:3815:6:  [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(p->strbuf, "%04d-%02d-%02d %02d:%02d:00.000",
data/sqliteodbc-0.9998/sqliteodbc.c:3822:6:  [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(p->strbuf, "%04d-%02d-%02d %02d:%02d:%02d.000",
data/sqliteodbc-0.9998/sqliteodbc.c:3830:6:  [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(p->strbuf, "%04d-%02d-%02d %02d:%02d:%02d.%03d",
data/sqliteodbc-0.9998/sqliteodbc.c:3929:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(dp, p->param, p->len);
data/sqliteodbc-0.9998/sqliteodbc.c:5235: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 buf[32];
data/sqliteodbc-0.9998/sqliteodbc.c:5246:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buf, "%d", seq++);
data/sqliteodbc-0.9998/sqliteodbc.c:5299:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
			    char buf[32];
data/sqliteodbc-0.9998/sqliteodbc.c:5302:8:  [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(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:5598: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.
				    char buf[32];
data/sqliteodbc-0.9998/sqliteodbc.c:5621:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", sqltype);
data/sqliteodbc-0.9998/sqliteodbc.c:5623:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", mm);
data/sqliteodbc-0.9998/sqliteodbc.c:5625:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", dd);
data/sqliteodbc-0.9998/sqliteodbc.c:5633:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
				    sprintf(buf, "%d", isnullable);
data/sqliteodbc-0.9998/sqliteodbc.c:5948: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 buf[32];
data/sqliteodbc-0.9998/sqliteodbc.c:5971:6:  [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(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:6082: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 buf[32];
data/sqliteodbc-0.9998/sqliteodbc.c:6105:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:7001: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 state[16];
data/sqliteodbc-0.9998/sqliteodbc.c:7200: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 *) info)[0] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:7217: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 *) info)[buflen - 1] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:7358: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 dummybuf[16];
data/sqliteodbc-0.9998/sqliteodbc.c:8026: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 dummyc[16];
data/sqliteodbc-0.9998/sqliteodbc.c:8029: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 pathbuf[301], *drvname;
data/sqliteodbc-0.9998/sqliteodbc.c:8716:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(flags, exists, sizeof (exists));
data/sqliteodbc-0.9998/sqliteodbc.c:9121: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((char *) val, "main");
data/sqliteodbc-0.9998/sqliteodbc.c:9637: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 buf[SQL_MAX_MESSAGE_LENGTH * 6], dbname[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqliteodbc.c:9638: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 busy[SQL_MAX_MESSAGE_LENGTH / 4];
data/sqliteodbc-0.9998/sqliteodbc.c:9639: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 sflag[32], ntflag[32], nwflag[32], lnflag[32];
data/sqliteodbc-0.9998/sqliteodbc.c:9641: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 tracef[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqliteodbc.c:9709:13:  [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).
	d->trace = fopen(tracef, "a");
data/sqliteodbc-0.9998/sqliteodbc.c:9856: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 buf[SQL_MAX_MESSAGE_LENGTH * 6], dbname[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqliteodbc.c:9857: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 dsn[SQL_MAX_MESSAGE_LENGTH], busy[SQL_MAX_MESSAGE_LENGTH / 4];
data/sqliteodbc-0.9998/sqliteodbc.c:9858: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 sflag[32], ntflag[32], lnflag[32];
data/sqliteodbc-0.9998/sqliteodbc.c:9860: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 tracef[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqliteodbc.c:9942: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(dsn, "SQLite");
data/sqliteodbc-0.9998/sqliteodbc.c:9985:13:  [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).
	d->trace = fopen(tracef, "a");
data/sqliteodbc-0.9998/sqliteodbc.c:10084:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf((char *) s->cursorname, "CUR_%I64X", (SQLUBIGINT) *stmt);
data/sqliteodbc-0.9998/sqliteodbc.c:10086:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf((char *) s->cursorname, "CUR_%016lX", (long) *stmt);
data/sqliteodbc-0.9998/sqliteodbc.c:10603: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 **data, valdummy[16];
data/sqliteodbc-0.9998/sqliteodbc.c:10832:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		memcpy(val, bin + offs, min(len, dlen));
data/sqliteodbc-0.9998/sqliteodbc.c:10881: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.
		    ((char *) val)[0] = data[0][0];
data/sqliteodbc-0.9998/sqliteodbc.c:10923:10:  [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 *) val)[0] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:10926: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 *) val)[0] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:10968: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.
		    ((char *) val)[zlen] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:10971: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 *) val)[zlen] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:11309:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char tmp[256], *t;
data/sqliteodbc-0.9998/sqliteodbc.c:11787: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 buf[256];
data/sqliteodbc-0.9998/sqliteodbc.c:11796:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", coln + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:11848: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 buf[256];
data/sqliteodbc-0.9998/sqliteodbc.c:11876:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", sqltype);
data/sqliteodbc-0.9998/sqliteodbc.c:11879:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", mm);
data/sqliteodbc-0.9998/sqliteodbc.c:11881:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", dd);
data/sqliteodbc-0.9998/sqliteodbc.c:12053:12:  [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 tcodes[32 * 32];
data/sqliteodbc-0.9998/sqliteodbc.c:12059:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(tcode, "%d", type);
data/sqliteodbc-0.9998/sqliteodbc.c:12726: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 buf[32];
data/sqliteodbc-0.9998/sqliteodbc.c:12729:4:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
			sprintf(buf, "%d", pos + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:12982:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(s->row_status, s->row_status0,
data/sqliteodbc-0.9998/sqliteodbc.c:13140:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(s->row_status, s->row_status0,
data/sqliteodbc-0.9998/sqliteodbc.c:13215:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(rowstatus, s->row_status0,
data/sqliteodbc-0.9998/sqliteodbc.c:14365:6:  [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((char *) errmsg, "[SQLite]");
data/sqliteodbc-0.9998/sqliteodbc.c:14390:6:  [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((char *) errmsg, "[SQLite]");
data/sqliteodbc-0.9998/sqliteodbc.c:14455: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 state[16];
data/sqliteodbc-0.9998/sqliteodbc.c:15211: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 attr[MAXPATHLEN];
data/sqliteodbc-0.9998/sqliteodbc.c:15221: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    DSN[MAXDSNAME];
data/sqliteodbc-0.9998/sqliteodbc.c:15252:18:  [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 *str = (char *) attribs, *start, key[MAXKEYLEN];
data/sqliteodbc-0.9998/sqliteodbc.c:15265:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(key, start, nkey);
data/sqliteodbc-0.9998/sqliteodbc.c:15282:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(setupdlg->attr[elem].attr, start, end);
data/sqliteodbc-0.9998/sqliteodbc.c:15307: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 buf[MAXPATHLEN], msg[MAXPATHLEN];
data/sqliteodbc-0.9998/sqliteodbc.c:15526: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 item[MAXDSNAME];
data/sqliteodbc-0.9998/sqliteodbc.c:15976:6:  [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(setupdlg->attr[KEY_DSN].attr, "DEFAULT");
data/sqliteodbc-0.9998/sqliteodbc.c:16010: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[SQL_MAX_MESSAGE_LENGTH * 8];
data/sqliteodbc-0.9998/sqliteodbc.c:16046: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 tracef[SQL_MAX_MESSAGE_LENGTH];
data/sqliteodbc-0.9998/sqliteodbc.c:16053:17:  [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).
	    d->trace = fopen(tracef, "a");
data/sqliteodbc-0.9998/sqliteodbc.c:16246: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 errmsg[301];
data/sqliteodbc-0.9998/sqliteodbc.c:16281: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 dllbuf[301], path[301], driver[300], attr[300], inst[400];
data/sqliteodbc-0.9998/sqliteodbc.c:16325: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.
		    char buf[512];
data/sqliteodbc-0.9998/sqliteodbc.c:16347: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 buf[512];
data/sqliteodbc-0.9998/sqliteodbc.c:16372: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 buf[512];
data/sqliteodbc-0.9998/sqliteodbc.c:16398: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 buf[512];
data/sqliteodbc-0.9998/sqliteodbc.c:16619:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqliteodbc.c:16628:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqliteodbc.c:16637:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(prop->aPromptData, instYN, sizeof (instYN));
data/sqliteodbc-0.9998/sqliteodbc.h:144: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 sqlstate[6];		/**< SQL state for SQLError() */
data/sqliteodbc-0.9998/sqliteodbc.h:223: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 strbuf[64];	/**< String buffer for scalar data */
data/sqliteodbc-0.9998/sqliteodbc.h:257: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 sqlstate[6];		/**< SQL state for SQLError() */
data/sqliteodbc-0.9998/tccex/obench.c:153: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 sqlbuf[1024];
data/sqliteodbc-0.9998/tccex/obench.c:271:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
        sprintf(sqlbuf, "INSERT INTO branches(Bid,Bbalance) "
data/sqliteodbc-0.9998/tccex/obench.c:285:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
        sprintf(sqlbuf, "INSERT INTO tellers(Tid,Bid,Tbalance) "
data/sqliteodbc-0.9998/tccex/obench.c:299:9:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
        sprintf(sqlbuf, "INSERT INTO accounts(Aid,Bid,Abalance) "
data/sqliteodbc-0.9998/tccex/obench.c:329: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 sqlbuf[1024];
data/sqliteodbc-0.9998/tccex/obench.c:342:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(sqlbuf, "UPDATE accounts "
data/sqliteodbc-0.9998/tccex/obench.c:353:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(sqlbuf, "SELECT Abalance "
data/sqliteodbc-0.9998/tccex/obench.c:385:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(sqlbuf, "UPDATE tellers "
data/sqliteodbc-0.9998/tccex/obench.c:396:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(sqlbuf, "UPDATE branches "
data/sqliteodbc-0.9998/tccex/obench.c:407:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(sqlbuf, "INSERT INTO history"
data/sqliteodbc-0.9998/xpath.c:100: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 expr[1];		/**< XPath expression text. */
data/sqliteodbc-0.9998/xpath.c:645:13:  [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.
	    enc = (char *) sqlite3_value_text(argv[6]);
data/sqliteodbc-0.9998/xpath.c:648:25:  [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.
	    doc = xmlReadFile((char *) sqlite3_value_text(argv[4]), enc, opts);
data/sqliteodbc-0.9998/xpath.c:653:10:  [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.
		url = (char *) sqlite3_value_text(argv[7]);
data/sqliteodbc-0.9998/xpath.c:786:10:  [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.
    p = (char *) sqlite3_value_text(argv[1]);
data/sqliteodbc-0.9998/xpath.c:1139: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.
	p = (char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/xpath.c:1148:13:  [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.
	    enc = (char *) sqlite3_value_text(argv[3]);
data/sqliteodbc-0.9998/xpath.c:1151:13:  [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.
	    url = (char *) sqlite3_value_text(argv[4]);
data/sqliteodbc-0.9998/xpath.c:1161:10:  [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.
    p = (char *) sqlite3_value_text(argv[1]);
data/sqliteodbc-0.9998/xpath.c:1321: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.
	enc = (char *) sqlite3_value_text(argv[1]);
data/sqliteodbc-0.9998/xpath.c:1407: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.
	p = (char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/xpath.c:1416:13:  [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.
	    enc = (char *) sqlite3_value_text(argv[3]);
data/sqliteodbc-0.9998/xpath.c:1419:13:  [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.
	    url = (char *) sqlite3_value_text(argv[4]);
data/sqliteodbc-0.9998/xpath.c:1431:10:  [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.
    p = (char *) sqlite3_value_text(argv[1]);
data/sqliteodbc-0.9998/xpath.c:1452:21:  [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.
	params[i] = (const char *) sqlite3_value_text(argv[i + param0]);
data/sqliteodbc-0.9998/zipfile.c:98:14:  [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.
    unsigned char *entries[1];	/**< Pointer to first entry */
data/sqliteodbc-0.9998/zipfile.c:112: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 tblname[1];	/**< Name, format "database"."table" */
data/sqliteodbc-0.9998/zipfile.c:139: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 magic[4];			/**< magic number */
data/sqliteodbc-0.9998/zipfile.c:173:8:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static char mem_vfs_name[64];
data/sqliteodbc-0.9998/zipfile.c:220:10:  [2] (misc) open:
  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).
    fd = open(filename, O_RDONLY);
data/sqliteodbc-0.9998/zipfile.c:443: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(vtab->tblname, "\".\"");
data/sqliteodbc-0.9998/zipfile.c:552:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
		    memcpy(tab->zip->entries, entries, i * sizeof (entries));
data/sqliteodbc-0.9998/zipfile.c:687:17:  [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.
	eq = (unsigned char *) sqlite3_value_text(argv[0]);
data/sqliteodbc-0.9998/zipfile.c:814: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 mtbuf[64];
data/sqliteodbc-0.9998/zipfile.c:816:6:  [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(mtbuf, "%04d-%02d-%02d %02d:%02d:%02d",
data/sqliteodbc-0.9998/zipfile.c:962:31:  [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.
	unsigned char *q = (unsigned char *) sqlite3_value_text(argv[0]);
data/sqliteodbc-0.9998/zipfile.c:963:31:  [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.
	unsigned char *p = (unsigned char *) sqlite3_value_text(argv[1]);
data/sqliteodbc-0.9998/zipfile.c:1067:22:  [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.
    data = (unsigned char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/zipfile.c:1094:22:  [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.
    data = (unsigned char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/zipfile.c:1172:22:  [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.
    data = (unsigned char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/zipfile.c:1235:22:  [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.
    data = (unsigned char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/zipfile.c:1313:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(mb->magic, MEM_MAGIC, 4);
data/sqliteodbc-0.9998/zipfile.c:1320:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(mb->data, data, length);
data/sqliteodbc-0.9998/zipfile.c:1327:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(mb->data, data, length);
data/sqliteodbc-0.9998/zipfile.c:1331:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(mb->data, data, length);
data/sqliteodbc-0.9998/zipfile.c:1337:6:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	    memcpy(mb->data, data, length);
data/sqliteodbc-0.9998/zipfile.c:1436:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(buf, mb->data + offs, len);
data/sqliteodbc-0.9998/zipfile.c:1526:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(mb->data + offs, buf, len);
data/sqliteodbc-0.9998/zipfile.c:2070:28:  [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.
    data = (const unsigned char *) sqlite3_value_blob(argv[0]);
data/sqliteodbc-0.9998/zipfile.c:2100: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.
			  (char *) sqlite3_value_text(argv[1]));
data/sqliteodbc-0.9998/zipfile.c:2121: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.
		     (char *) sqlite3_value_text(argv[1]));
data/sqliteodbc-0.9998/zipfile.c:2125: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.
		     (char *) sqlite3_value_text(argv[1]));
data/sqliteodbc-0.9998/zipfile.c:2136: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 *) sqlite3_value_text(argv[1]));
data/sqliteodbc-0.9998/zipfile.c:2177: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 *uri, vfs[64];
data/sqliteodbc-0.9998/zipfile.c:2192:12:  [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.
    uri = (char *) sqlite3_value_text(argv[0]);
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:278: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).
						if ( strlen(g_SQLiteDriverData[Driver].pDLLName) )
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:304:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
							if ( !strlen(g_SQLiteDriverData[Driver].pDLLName) )
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:337:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
						strncpy( RunData.DirectDll, Arguments[Count].ArgValue[0], SQLINST_MAX_BUFFER );
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:365:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
				if ( strlen(g_SQLiteDriverData[Driver].pDLLName) )
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:414:11:  [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(g_SQLiteDriverData[Driver].pDLLName) )
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:476:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
			strncpy( pDestArg[DestArg].ArgName, &argv[ArgCount][1], SQLINST_MAX_BUFFER );
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:641:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
			strncpy( pDestArg->ArgValue[pDestArg->ArgValueCount], pValueStart, ValueLength );
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:836:23:  [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).
	StartPosition	= (int)strlen(pSourceBuffer);
data/sqliteodbc-0.9998/SQLiteODBCInstaller.c:861:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy( pDestBuffer, &pSourceBuffer[StartPosition], MaxDestBuffer );
data/sqliteodbc-0.9998/adddsn.c:95:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tmp, lpszCmdLine, sizeof (tmp));
data/sqliteodbc-0.9998/adddsn.c:112:9:  [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(drv) == 0) {
data/sqliteodbc-0.9998/adddsn.c:119:9:  [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).
    i = strlen(cfg);
data/sqliteodbc-0.9998/blobtoxy.c:429: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).
	size += argv[i] ? (strlen(argv[i]) + 1) : 0;
data/sqliteodbc-0.9998/blobtoxy.c:432:24:  [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).
    size += argv[1] ? (strlen(argv[1]) + 3) : 3;
data/sqliteodbc-0.9998/blobtoxy.c:433:24:  [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).
    size += argv[3] ? (strlen(argv[3]) + 3) : 0;
data/sqliteodbc-0.9998/blobtoxy.c:454:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/blobtoxy.c:461:6:  [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(p, "\"");
data/sqliteodbc-0.9998/blobtoxy.c:466:6:  [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(p, "\"");
data/sqliteodbc-0.9998/blobtoxy.c:468:6:  [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(p, "\"");
data/sqliteodbc-0.9998/blobtoxy.c:500:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    p += strlen(p) - 1;
data/sqliteodbc-0.9998/csvtable.c:124:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int nappend = append ? strlen(append) : 0;
data/sqliteodbc-0.9998/csvtable.c:193:26:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    ret = sqlite3_malloc(strlen(in) + 1);
data/sqliteodbc-0.9998/csvtable.c:197:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    i = strlen(in + 1);
data/sqliteodbc-0.9998/csvtable.c:218:26:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int typelen = type ? strlen(type) : 0;
data/sqliteodbc-0.9998/csvtable.c:402:29:  [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 *utf = sqlite3_malloc(strlen(data) * 2 + 2);
data/sqliteodbc-0.9998/csvtable.c:517:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	csv->sep = sqlite3_malloc(strlen(sep) + 1);
data/sqliteodbc-0.9998/csvtable.c:528:29:  [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).
	csv->quot = sqlite3_malloc(strlen(quot) + 1);
data/sqliteodbc-0.9998/csvtable.c:653:6:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	c = fgetc(csv->f);
data/sqliteodbc-0.9998/csvtable.c:664:15:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	    int c2 = fgetc(csv->f);
data/sqliteodbc-0.9998/csvtable.c:675:15:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	    int c2 = fgetc(csv->f);
data/sqliteodbc-0.9998/csvtable.c:785:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    sep = csv->cols[i] + strlen(csv->cols[i]) - 1;
data/sqliteodbc-0.9998/csvtable.c:906: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).
	p = sqlite3_malloc(strlen(quot) + 1);
data/sqliteodbc-0.9998/csvtable.c:918: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).
	p = sqlite3_malloc(strlen(sep) + 1);
data/sqliteodbc-0.9998/csvtable.c:1064:6:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	k = strlen(cnames[i]);
data/sqliteodbc-0.9998/csvtable.c:1533:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    k = strlen(cnames[i]);
data/sqliteodbc-0.9998/fixup.c:36: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).
	    len = strlen(line);
data/sqliteodbc-0.9998/fixup.c:58:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(argv[i]);
data/sqliteodbc-0.9998/impexp.c:363:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		nsql = strlen(line);
data/sqliteodbc-0.9998/impexp.c:372: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 len = strlen(line);
data/sqliteodbc-0.9998/impexp.c:381:6:  [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(sql + nsql, "\n");
data/sqliteodbc-0.9998/impexp.c:686:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    k = strlen(text);
data/sqliteodbc-0.9998/impexp.c:688:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    k = strlen(text);
data/sqliteodbc-0.9998/impexp.c:713:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    k = strlen(text);
data/sqliteodbc-0.9998/impexp.c:755:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    n = strlen(p);
data/sqliteodbc-0.9998/impexp.c:1040:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int nappend = append ? strlen(append) : 0;
data/sqliteodbc-0.9998/impexp.c:1355:17:  [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 tlen = strlen(type ? type : "");
data/sqliteodbc-0.9998/impexp.c:1373:11:  [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).
			tlen = strlen(select);
data/sqliteodbc-0.9998/inst.c:115: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(firstpat, "\\");
data/sqliteodbc-0.9998/mkopc3.c:71:48:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		struct tk *tkn = malloc(sizeof (struct tk) + strlen(name) + 1);
data/sqliteodbc-0.9998/mkopc3.c:110:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
					    strlen(name) + 3 + 1);
data/sqliteodbc-0.9998/mkopc3.c:138:40:  [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).
	    opn = malloc(sizeof (struct tk) + strlen(p) + 1);
data/sqliteodbc-0.9998/mkopc3.c:154:33:  [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 (memcmp(qq, tkp->name, strlen(tkp->name)) == 0) {
data/sqliteodbc-0.9998/sqlite3odbc.c:386:18:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    p = xmalloc_(strlen(str) + 1, file, line);
data/sqliteodbc-0.9998/sqlite3odbc.c:439:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int c = strlen(a), d = strlen(b);
data/sqliteodbc-0.9998/sqlite3odbc.c:439:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int c = strlen(a), d = strlen(b);
data/sqliteodbc-0.9998/sqlite3odbc.c:621:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	p = xmalloc(strlen(str) + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:645:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(str);
data/sqliteodbc-0.9998/sqlite3odbc.c:699:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(str);
data/sqliteodbc-0.9998/sqlite3odbc.c:939: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).
	    len = strlen((char *) str);
data/sqliteodbc-0.9998/sqlite3odbc.c:1110:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = strlen(str);
data/sqliteodbc-0.9998/sqlite3odbc.c:1285:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(buf, def, bufsiz);
data/sqliteodbc-0.9998/sqlite3odbc.c:1422: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).
		char *q = xmalloc(strlen(p) + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:1709:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(d->sqlstate, st, 5);
data/sqliteodbc-0.9998/sqlite3odbc.c:1749:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(s->sqlstate, st, 5);
data/sqliteodbc-0.9998/sqlite3odbc.c:1850:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, data, sizeof (buf) - 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:1883: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(str);
data/sqliteodbc-0.9998/sqlite3odbc.c:1929:24:  [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).
	    memmove(q, q + 1, strlen(q));
data/sqliteodbc-0.9998/sqlite3odbc.c:2068:5:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
    usleep(10000);
data/sqliteodbc-0.9998/sqlite3odbc.c:2190: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).
    q = p = xmalloc(strlen(typename) + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:2500:9:  [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).
	size = strlen(sql);
data/sqliteodbc-0.9998/sqlite3odbc.c:2542:9:  [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).
	size = strlen(sql) * 4;
data/sqliteodbc-0.9998/sqlite3odbc.c:2728:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    size = strlen(p);
data/sqliteodbc-0.9998/sqlite3odbc.c:2935: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).
			    if (strlen(typename) == 7 &&
data/sqliteodbc-0.9998/sqlite3odbc.c:3128:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 0, 4); buf[4] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3130:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 4, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3132:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 6, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3243:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 0, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3245:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 2, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3247:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 4, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3389:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 0, 4); buf[4] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3391:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 4, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3393:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 6, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3395:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 8, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3397:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 10, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3399:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 12, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite3odbc.c:3403:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(buf, p + 14, m);
data/sqliteodbc-0.9998/sqlite3odbc.c:3823: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(msg);
data/sqliteodbc-0.9998/sqlite3odbc.c:4130:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(path + plen, exts, p - exts);
data/sqliteodbc-0.9998/sqlite3odbc.c:4314:19:  [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).
		size += 3 + 3 * strlen(colname);
data/sqliteodbc-0.9998/sqlite3odbc.c:4320: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).
		size += 2 + (p ? strlen(p) : 0);
data/sqliteodbc-0.9998/sqlite3odbc.c:4327: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).
		size += 2 + (p ? strlen(p) : 0);
data/sqliteodbc-0.9998/sqlite3odbc.c:4365:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		tblname += strlen(tblname) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:4376:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dbname += strlen(dbname) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:4383:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:4397:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(p, colname, q - colname);
data/sqliteodbc-0.9998/sqlite3odbc.c:4399: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:4402: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:4409: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:4905:29:  [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).
		    dp = wmb_to_utf(data, strlen (data));
data/sqliteodbc-0.9998/sqlite3odbc.c:4911:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dlen = strlen(dp);
data/sqliteodbc-0.9998/sqlite3odbc.c:4948:11:  [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).
			nlen = strlen(dp);
data/sqliteodbc-0.9998/sqlite3odbc.c:4984:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
			p->len = strlen(dp);
data/sqliteodbc-0.9998/sqlite3odbc.c:5133:25:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    p->len = p->max = strlen(p->param);
data/sqliteodbc-0.9998/sqlite3odbc.c:5158: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).
	    p->len = strlen(p->param);
data/sqliteodbc-0.9998/sqlite3odbc.c:5182: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).
		    p->len = strlen(dp);
data/sqliteodbc-0.9998/sqlite3odbc.c:5806:34:  [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).
		SQLINTEGER buflen, SQLINTEGER *strlen)
data/sqliteodbc-0.9998/sqlite3odbc.c:5820:35:  [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).
		 SQLINTEGER buflen, SQLINTEGER *strlen)
data/sqliteodbc-0.9998/sqlite3odbc.c:5862: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).
	      SQLSMALLINT *strlen, SQLSMALLINT *type,
data/sqliteodbc-0.9998/sqlite3odbc.c:5879: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).
	       SQLSMALLINT *strlen, SQLSMALLINT *type,
data/sqliteodbc-0.9998/sqlite3odbc.c:5897: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).
	      SQLLEN *strlen, SQLLEN *indicator)
data/sqliteodbc-0.9998/sqlite3odbc.c:6029:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:6606:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:6684:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    nlen = strlen(rowp2[i * ncols2 + namec2]);
data/sqliteodbc-0.9998/sqlite3odbc.c:6754:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		nlen = strlen(rowp2[i * ncols2 + namec2]);
data/sqliteodbc-0.9998/sqlite3odbc.c:7022:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:7482:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(pname, (char *) PKtable, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:7493:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(fname, (char *) FKtable, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:7535:9:  [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).
	plen = strlen(pname);
data/sqliteodbc-0.9998/sqlite3odbc.c:7540:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		int len = strlen(ptab);
data/sqliteodbc-0.9998/sqlite3odbc.c:7569:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		int len = strlen(ptab);
data/sqliteodbc-0.9998/sqlite3odbc.c:7628:29:  [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 nnrows, nncols, plen = strlen(pname);
data/sqliteodbc-0.9998/sqlite3odbc.c:7682:17:  [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(ptab);
data/sqliteodbc-0.9998/sqlite3odbc.c:7742:17:  [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(ptab);
data/sqliteodbc-0.9998/sqlite3odbc.c:8241:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	sqlinLen = strlen((char *) sqlin);
data/sqliteodbc-0.9998/sqlite3odbc.c:8245:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) sql, (char *) sqlin, sqlMax - 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:8704:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(logmsg);
data/sqliteodbc-0.9998/sqlite3odbc.c:8720:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) msg, logmsg, buflen);
data/sqliteodbc-0.9998/sqlite3odbc.c:8949:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = strlen(logmsg);
data/sqliteodbc-0.9998/sqlite3odbc.c:8986:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(logmsg);
data/sqliteodbc-0.9998/sqlite3odbc.c:9000:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) info, logmsg, buflen);
data/sqliteodbc-0.9998/sqlite3odbc.c:11038: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 len = strlen(src); \
data/sqliteodbc-0.9998/sqlite3odbc.c:11040:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(dst, src, cnt); \
data/sqliteodbc-0.9998/sqlite3odbc.c:12647: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 len = strlen(attr);
data/sqliteodbc-0.9998/sqlite3odbc.c:12663:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(out, start, len);
data/sqliteodbc-0.9998/sqlite3odbc.c:12721:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, (char *) dsn, len);
data/sqliteodbc-0.9998/sqlite3odbc.c:12749:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(dbname, buf, sizeof (dbname));
data/sqliteodbc-0.9998/sqlite3odbc.c:12844:36:  [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).
	d->pwdLen = (pwdLen == SQL_NTS) ? strlen(d->pwd) : pwdLen;
data/sqliteodbc-0.9998/sqlite3odbc.c:13047:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, (char *) connIn, len);
data/sqliteodbc-0.9998/sqlite3odbc.c:13060:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(dsn, buf, sizeof (dsn) - 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:13187:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(dbname, buf, sizeof (dbname));
data/sqliteodbc-0.9998/sqlite3odbc.c:13214:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = min(connOutMax - 1, strlen(buf));
data/sqliteodbc-0.9998/sqlite3odbc.c:13216:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) connOut, buf, len);
data/sqliteodbc-0.9998/sqlite3odbc.c:13234:17:  [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).
    d->pwdLen = strlen(pwd);
data/sqliteodbc-0.9998/sqlite3odbc.c:13488:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	*lenp = strlen((char *) s->cursorname);
data/sqliteodbc-0.9998/sqlite3odbc.c:13493:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) cursor, (char *) s->cursorname, buflen - 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:13497:18:  [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).
	    *lenp = min(strlen((char *) s->cursorname), buflen - 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:13539: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).
	    len = strlen(c);
data/sqliteodbc-0.9998/sqlite3odbc.c:13541:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) cursor, c, buflen - 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:13634:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy((char *) s->cursorname, (char *) cursor, len);
data/sqliteodbc-0.9998/sqlite3odbc.c:14159:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dlen = strlen(dp);
data/sqliteodbc-0.9998/sqlite3odbc.c:14253:17:  [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 dlen = strlen(*data);
data/sqliteodbc-0.9998/sqlite3odbc.c:14301:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dlen = strlen((char *) cdata);
data/sqliteodbc-0.9998/sqlite3odbc.c:14342:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(val, (char *) cdata + offs, len - doz);
data/sqliteodbc-0.9998/sqlite3odbc.c:14345:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(val, *data + offs, len - doz);
data/sqliteodbc-0.9998/sqlite3odbc.c:14726:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(tmp, (char *) type, sizeof (tmp));
data/sqliteodbc-0.9998/sqlite3odbc.c:14731:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(tmp, (char *) type, len);
data/sqliteodbc-0.9998/sqlite3odbc.c:14775:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:15094:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:15105:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(cname, (char *) col, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:16053:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite3odbc.c:16086:11:  [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(rowp[i * ncols + typec]) == 7 &&
data/sqliteodbc-0.9998/sqlite3odbc.c:16193: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).
		    strlen(rowpp[i * ncols2 + typec]) == 7 &&
data/sqliteodbc-0.9998/sqlite3odbc.c:16994:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy((char *) name, c->column, nameMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17000:17:  [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).
	    *nameLen = strlen((char *) name);
data/sqliteodbc-0.9998/sqlite3odbc.c:17002:17:  [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).
	    *nameLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite3odbc.c:17079:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy((char *) name, (char *) n, nameMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17081:26:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    len = min(nameMax, strlen((char *) n));
data/sqliteodbc-0.9998/sqlite3odbc.c:17099:9:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		len = strlen(c->column);
data/sqliteodbc-0.9998/sqlite3odbc.c:17172:9:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		len = strlen(c->column);
data/sqliteodbc-0.9998/sqlite3odbc.c:17249:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(valc, c->label, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17252: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).
	    *valLen = strlen(c->label);
data/sqliteodbc-0.9998/sqlite3odbc.c:17259:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17262: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).
	*valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite3odbc.c:17277:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17279: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).
	    *valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite3odbc.c:17433:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, tn, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17443: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).
	    *valLen = strlen(valc);
data/sqliteodbc-0.9998/sqlite3odbc.c:17445: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).
	    *valLen = strlen(tn);
data/sqliteodbc-0.9998/sqlite3odbc.c:17462:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, z, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17465: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).
	*valLen = strlen(z);
data/sqliteodbc-0.9998/sqlite3odbc.c:17476:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->table, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17479: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).
	*valLen = strlen(c->table);
data/sqliteodbc-0.9998/sqlite3odbc.c:17569:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(val, v, vmax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17570:23:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    len = min(vmax, strlen(v));
data/sqliteodbc-0.9998/sqlite3odbc.c:17713:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->db, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17716: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).
	*valLen = strlen(c->db);
data/sqliteodbc-0.9998/sqlite3odbc.c:17730:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(valc, c->label, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17733: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).
	    *valLen = strlen(c->label);
data/sqliteodbc-0.9998/sqlite3odbc.c:17740:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17743: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).
	*valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite3odbc.c:17749:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, z, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17752: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).
	*valLen = strlen(z);
data/sqliteodbc-0.9998/sqlite3odbc.c:17761:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17763: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).
	    *valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite3odbc.c:17782:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, tn, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17792: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).
	    *valLen = strlen(valc);
data/sqliteodbc-0.9998/sqlite3odbc.c:17794: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).
	    *valLen = strlen(tn);
data/sqliteodbc-0.9998/sqlite3odbc.c:17826:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->table, valMax);
data/sqliteodbc-0.9998/sqlite3odbc.c:17829: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).
	*valLen = strlen(c->table);
data/sqliteodbc-0.9998/sqlite3odbc.c:18055:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(val, v, vmax);
data/sqliteodbc-0.9998/sqlite3odbc.c:18056:23:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    len = min(vmax, strlen(v));
data/sqliteodbc-0.9998/sqlite3odbc.c:18214: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).
	    *errlen = strlen((char *) errmsg);
data/sqliteodbc-0.9998/sqlite3odbc.c:18216:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	    strncpy((char *) errmsg, "[SQLite]", errmax);
data/sqliteodbc-0.9998/sqlite3odbc.c:18218:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) errmsg + 8, (char *) s->logmsg, errmax - 8);
data/sqliteodbc-0.9998/sqlite3odbc.c:18220: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).
	    *errlen = min(strlen((char *) s->logmsg) + 8, errmax);
data/sqliteodbc-0.9998/sqlite3odbc.c:18239: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).
	    *errlen = strlen((char *) errmsg);
data/sqliteodbc-0.9998/sqlite3odbc.c:18241:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	    strncpy((char *) errmsg, "[SQLite]", errmax);
data/sqliteodbc-0.9998/sqlite3odbc.c:18243:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) errmsg + 8, (char *) d->logmsg, errmax - 8);
data/sqliteodbc-0.9998/sqlite3odbc.c:18245: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).
	    *errlen = min(strlen((char *) d->logmsg) + 8, errmax);
data/sqliteodbc-0.9998/sqlite3odbc.c:18407: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).
	    size += 3 + 3 * strlen(colname);
data/sqliteodbc-0.9998/sqlite3odbc.c:18413:23:  [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).
	    size += 2 + (p ? strlen(p) : 0);
data/sqliteodbc-0.9998/sqlite3odbc.c:18420:23:  [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).
	    size += 2 + (p ? strlen(p) : 0);
data/sqliteodbc-0.9998/sqlite3odbc.c:18454:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		tblname += strlen(tblname) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:18465:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dbname += strlen(dbname) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:18472:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:18486:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(p, colname, q - colname);
data/sqliteodbc-0.9998/sqlite3odbc.c:18488: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:18491: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:18498: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite3odbc.c:19178:29:  [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 (setupdlg->newDSN && strlen(dsn) == 0) {
data/sqliteodbc-0.9998/sqlite3odbc.c:19919:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = min(connOutMax - 1, strlen(buf));
data/sqliteodbc-0.9998/sqlite3odbc.c:19921:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) connOut, buf, len);
data/sqliteodbc-0.9998/sqlite3odbc.c:19947:17:  [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).
    d->pwdLen = strlen(setupdlg->attr[KEY_PASSWD].attr);
data/sqliteodbc-0.9998/sqlite3odbc.c:20221: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).
	pathlen = strlen(path);
data/sqliteodbc-0.9998/sqlite3odbc.c:20386:48:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    argspace = malloc(size * sizeof (char *) + strlen(cmdline) + 1);
data/sqliteodbc-0.9998/sqlite3odbc.c:20529:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "Database", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20530:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant character.
    strncpy(prop->szValue, "", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20535:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "Timeout", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20536:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "100000", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20543:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "StepAPI", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20544:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20551:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "ShortNames", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20552:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20559:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "LongNames", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20560:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20566:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "NoCreat", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20567:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20574:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "NoWCHAR", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20575:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20582:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "FKSupport", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20583:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20590:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "SyncPragma", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20591:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "NORMAL", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20598:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "JournalMode", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20599:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "DELETE", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20604:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "LoadExt", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20605:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant character.
    strncpy(prop->szValue, "", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite3odbc.c:20611:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "BigInt", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite3odbc.c:20612:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:365:18:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    p = xmalloc_(strlen(str) + 1, file, line);
data/sqliteodbc-0.9998/sqlite4odbc.c:417:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int c = strlen(a), d = strlen(b);
data/sqliteodbc-0.9998/sqlite4odbc.c:417:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int c = strlen(a), d = strlen(b);
data/sqliteodbc-0.9998/sqlite4odbc.c:594:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	p = xmalloc(strlen(str) + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:618:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(str);
data/sqliteodbc-0.9998/sqlite4odbc.c:672:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(str);
data/sqliteodbc-0.9998/sqlite4odbc.c:909: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).
	    len = strlen((char *) str);
data/sqliteodbc-0.9998/sqlite4odbc.c:1080:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = strlen(str);
data/sqliteodbc-0.9998/sqlite4odbc.c:1255:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(buf, def, bufsiz);
data/sqliteodbc-0.9998/sqlite4odbc.c:1392: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).
		char *q = xmalloc(strlen(p) + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:1771:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(d->sqlstate, st, 5);
data/sqliteodbc-0.9998/sqlite4odbc.c:1811:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(s->sqlstate, st, 5);
data/sqliteodbc-0.9998/sqlite4odbc.c:1912:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, data, sizeof (buf) - 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:1945: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(str);
data/sqliteodbc-0.9998/sqlite4odbc.c:1991:24:  [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).
	    memmove(q, q + 1, strlen(q));
data/sqliteodbc-0.9998/sqlite4odbc.c:2172: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).
    q = p = xmalloc(strlen(typename) + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:2482:9:  [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).
	size = strlen(sql);
data/sqliteodbc-0.9998/sqlite4odbc.c:2522:9:  [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).
	size = strlen(sql) * 4;
data/sqliteodbc-0.9998/sqlite4odbc.c:2708:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    size = strlen(p);
data/sqliteodbc-0.9998/sqlite4odbc.c:2892:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 0, 4); buf[4] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:2894:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 4, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:2896:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 6, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:2990:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 0, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:2992:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 2, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:2994:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 4, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:3096:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 0, 4); buf[4] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:3098:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 4, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:3100:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 6, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:3102:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 8, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:3104:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 10, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:3106:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 12, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqlite4odbc.c:3110:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(buf, p + 14, m);
data/sqliteodbc-0.9998/sqlite4odbc.c:3541: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(msg);
data/sqliteodbc-0.9998/sqlite4odbc.c:3782:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(path + plen, exts, p - exts);
data/sqliteodbc-0.9998/sqlite4odbc.c:3954:19:  [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).
		size += 3 + 3 * strlen(colname);
data/sqliteodbc-0.9998/sqlite4odbc.c:3959: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).
		size += 2 + (p ? strlen(p) : 0);
data/sqliteodbc-0.9998/sqlite4odbc.c:3964: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).
		size += 2 + (p ? strlen(p) : 0);
data/sqliteodbc-0.9998/sqlite4odbc.c:3996:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		tblname += strlen(tblname) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:4005:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dbname += strlen(dbname) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:4009:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:4020:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(p, colname, q - colname);
data/sqliteodbc-0.9998/sqlite4odbc.c:4022: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:4025: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:4029: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:4516:29:  [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).
		    dp = wmb_to_utf(data, strlen (data));
data/sqliteodbc-0.9998/sqlite4odbc.c:4522:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dlen = strlen(dp);
data/sqliteodbc-0.9998/sqlite4odbc.c:4559:11:  [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).
			nlen = strlen(dp);
data/sqliteodbc-0.9998/sqlite4odbc.c:4595:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
			p->len = strlen(dp);
data/sqliteodbc-0.9998/sqlite4odbc.c:4744:25:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    p->len = p->max = strlen(p->param);
data/sqliteodbc-0.9998/sqlite4odbc.c:4769: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).
	    p->len = strlen(p->param);
data/sqliteodbc-0.9998/sqlite4odbc.c:4793: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).
		    p->len = strlen(dp);
data/sqliteodbc-0.9998/sqlite4odbc.c:5365:34:  [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).
		SQLINTEGER buflen, SQLINTEGER *strlen)
data/sqliteodbc-0.9998/sqlite4odbc.c:5379:35:  [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).
		 SQLINTEGER buflen, SQLINTEGER *strlen)
data/sqliteodbc-0.9998/sqlite4odbc.c:5421: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).
	      SQLSMALLINT *strlen, SQLSMALLINT *type,
data/sqliteodbc-0.9998/sqlite4odbc.c:5438: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).
	       SQLSMALLINT *strlen, SQLSMALLINT *type,
data/sqliteodbc-0.9998/sqlite4odbc.c:5456: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).
	      SQLLEN *strlen, SQLLEN *indicator)
data/sqliteodbc-0.9998/sqlite4odbc.c:5588:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:6164:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:6242:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    nlen = strlen(rowp2[i * ncols2 + namec2]);
data/sqliteodbc-0.9998/sqlite4odbc.c:6312:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		nlen = strlen(rowp2[i * ncols2 + namec2]);
data/sqliteodbc-0.9998/sqlite4odbc.c:6580:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:7040:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(pname, (char *) PKtable, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:7051:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(fname, (char *) FKtable, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:7093:9:  [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).
	plen = strlen(pname);
data/sqliteodbc-0.9998/sqlite4odbc.c:7098:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		int len = strlen(ptab);
data/sqliteodbc-0.9998/sqlite4odbc.c:7127:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		int len = strlen(ptab);
data/sqliteodbc-0.9998/sqlite4odbc.c:7186:29:  [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 nnrows, nncols, plen = strlen(pname);
data/sqliteodbc-0.9998/sqlite4odbc.c:7240:17:  [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(ptab);
data/sqliteodbc-0.9998/sqlite4odbc.c:7300:17:  [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(ptab);
data/sqliteodbc-0.9998/sqlite4odbc.c:7780:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	sqlinLen = strlen((char *) sqlin);
data/sqliteodbc-0.9998/sqlite4odbc.c:7784:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) sql, (char *) sqlin, sqlMax - 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:8243:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(logmsg);
data/sqliteodbc-0.9998/sqlite4odbc.c:8259:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) msg, logmsg, buflen);
data/sqliteodbc-0.9998/sqlite4odbc.c:8488:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = strlen(logmsg);
data/sqliteodbc-0.9998/sqlite4odbc.c:8525:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(logmsg);
data/sqliteodbc-0.9998/sqlite4odbc.c:8539:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) info, logmsg, buflen);
data/sqliteodbc-0.9998/sqlite4odbc.c:10406: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 len = strlen(src); \
data/sqliteodbc-0.9998/sqlite4odbc.c:10408:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(dst, src, cnt); \
data/sqliteodbc-0.9998/sqlite4odbc.c:12010: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 len = strlen(attr);
data/sqliteodbc-0.9998/sqlite4odbc.c:12026:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(out, start, len);
data/sqliteodbc-0.9998/sqlite4odbc.c:12083:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, (char *) dsn, len);
data/sqliteodbc-0.9998/sqlite4odbc.c:12111:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(dbname, buf, sizeof (dbname));
data/sqliteodbc-0.9998/sqlite4odbc.c:12201:36:  [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).
	d->pwdLen = (pwdLen == SQL_NTS) ? strlen(d->pwd) : pwdLen;
data/sqliteodbc-0.9998/sqlite4odbc.c:12398:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, (char *) connIn, len);
data/sqliteodbc-0.9998/sqlite4odbc.c:12411:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(dsn, buf, sizeof (dsn) - 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:12530:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(dbname, buf, sizeof (dbname));
data/sqliteodbc-0.9998/sqlite4odbc.c:12556:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = min(connOutMax - 1, strlen(buf));
data/sqliteodbc-0.9998/sqlite4odbc.c:12558:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) connOut, buf, len);
data/sqliteodbc-0.9998/sqlite4odbc.c:12575:17:  [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).
    d->pwdLen = strlen(pwd);
data/sqliteodbc-0.9998/sqlite4odbc.c:12828:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	*lenp = strlen((char *) s->cursorname);
data/sqliteodbc-0.9998/sqlite4odbc.c:12833:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) cursor, (char *) s->cursorname, buflen - 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:12837:18:  [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).
	    *lenp = min(strlen((char *) s->cursorname), buflen - 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:12879: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).
	    len = strlen(c);
data/sqliteodbc-0.9998/sqlite4odbc.c:12881:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) cursor, c, buflen - 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:12974:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy((char *) s->cursorname, (char *) cursor, len);
data/sqliteodbc-0.9998/sqlite4odbc.c:13501:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dlen = strlen(dp);
data/sqliteodbc-0.9998/sqlite4odbc.c:13595:17:  [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 dlen = strlen(*data);
data/sqliteodbc-0.9998/sqlite4odbc.c:13643:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dlen = strlen((char *) cdata);
data/sqliteodbc-0.9998/sqlite4odbc.c:13684:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(val, (char *) cdata + offs, len - doz);
data/sqliteodbc-0.9998/sqlite4odbc.c:13687:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(val, *data + offs, len - doz);
data/sqliteodbc-0.9998/sqlite4odbc.c:14067:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(tmp, (char *) type, sizeof (tmp));
data/sqliteodbc-0.9998/sqlite4odbc.c:14072:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(tmp, (char *) type, len);
data/sqliteodbc-0.9998/sqlite4odbc.c:14116:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:14433:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:14444:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(cname, (char *) col, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:15392:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqlite4odbc.c:15425:11:  [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(rowp[i * ncols + typec]) == 7 &&
data/sqliteodbc-0.9998/sqlite4odbc.c:15532: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).
		    strlen(rowpp[i * ncols2 + typec]) == 7 &&
data/sqliteodbc-0.9998/sqlite4odbc.c:16333:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy((char *) name, c->column, nameMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:16339:17:  [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).
	    *nameLen = strlen((char *) name);
data/sqliteodbc-0.9998/sqlite4odbc.c:16341:17:  [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).
	    *nameLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite4odbc.c:16418:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy((char *) name, (char *) n, nameMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:16420:26:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    len = min(nameMax, strlen((char *) n));
data/sqliteodbc-0.9998/sqlite4odbc.c:16438:9:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		len = strlen(c->column);
data/sqliteodbc-0.9998/sqlite4odbc.c:16511:9:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		len = strlen(c->column);
data/sqliteodbc-0.9998/sqlite4odbc.c:16588:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(valc, c->label, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:16591: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).
	    *valLen = strlen(c->label);
data/sqliteodbc-0.9998/sqlite4odbc.c:16598:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:16601: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).
	*valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite4odbc.c:16616:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:16618: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).
	    *valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite4odbc.c:16772:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, tn, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:16782: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).
	    *valLen = strlen(valc);
data/sqliteodbc-0.9998/sqlite4odbc.c:16784: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).
	    *valLen = strlen(tn);
data/sqliteodbc-0.9998/sqlite4odbc.c:16801:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, z, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:16804: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).
	*valLen = strlen(z);
data/sqliteodbc-0.9998/sqlite4odbc.c:16815:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->table, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:16818: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).
	*valLen = strlen(c->table);
data/sqliteodbc-0.9998/sqlite4odbc.c:16908:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(val, v, vmax);
data/sqliteodbc-0.9998/sqlite4odbc.c:16909:23:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    len = min(vmax, strlen(v));
data/sqliteodbc-0.9998/sqlite4odbc.c:17052:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->db, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17055: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).
	*valLen = strlen(c->db);
data/sqliteodbc-0.9998/sqlite4odbc.c:17069:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(valc, c->label, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17072: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).
	    *valLen = strlen(c->label);
data/sqliteodbc-0.9998/sqlite4odbc.c:17079:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17082: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).
	*valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite4odbc.c:17088:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, z, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17091: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).
	*valLen = strlen(z);
data/sqliteodbc-0.9998/sqlite4odbc.c:17100:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17102: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).
	    *valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqlite4odbc.c:17121:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, tn, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17131: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).
	    *valLen = strlen(valc);
data/sqliteodbc-0.9998/sqlite4odbc.c:17133: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).
	    *valLen = strlen(tn);
data/sqliteodbc-0.9998/sqlite4odbc.c:17165:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->table, valMax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17168: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).
	*valLen = strlen(c->table);
data/sqliteodbc-0.9998/sqlite4odbc.c:17394:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(val, v, vmax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17395:23:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    len = min(vmax, strlen(v));
data/sqliteodbc-0.9998/sqlite4odbc.c:17553: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).
	    *errlen = strlen((char *) errmsg);
data/sqliteodbc-0.9998/sqlite4odbc.c:17555:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	    strncpy((char *) errmsg, "[SQLite]", errmax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17557:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) errmsg + 8, (char *) s->logmsg, errmax - 8);
data/sqliteodbc-0.9998/sqlite4odbc.c:17559: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).
	    *errlen = min(strlen((char *) s->logmsg) + 8, errmax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17578: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).
	    *errlen = strlen((char *) errmsg);
data/sqliteodbc-0.9998/sqlite4odbc.c:17580:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	    strncpy((char *) errmsg, "[SQLite]", errmax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17582:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) errmsg + 8, (char *) d->logmsg, errmax - 8);
data/sqliteodbc-0.9998/sqlite4odbc.c:17584: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).
	    *errlen = min(strlen((char *) d->logmsg) + 8, errmax);
data/sqliteodbc-0.9998/sqlite4odbc.c:17741: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).
	    size += 3 + 3 * strlen(colname);
data/sqliteodbc-0.9998/sqlite4odbc.c:17746:23:  [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).
	    size += 2 + (p ? strlen(p) : 0);
data/sqliteodbc-0.9998/sqlite4odbc.c:17751:23:  [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).
	    size += 2 + (p ? strlen(p) : 0);
data/sqliteodbc-0.9998/sqlite4odbc.c:17787:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dbname += strlen(dbname) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:17791:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:17803:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(p, colname, q - colname);
data/sqliteodbc-0.9998/sqlite4odbc.c:17805: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:17808: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:17812: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqlite4odbc.c:18450:29:  [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 (setupdlg->newDSN && strlen(dsn) == 0) {
data/sqliteodbc-0.9998/sqlite4odbc.c:19167:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = min(connOutMax - 1, strlen(buf));
data/sqliteodbc-0.9998/sqlite4odbc.c:19169:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) connOut, buf, len);
data/sqliteodbc-0.9998/sqlite4odbc.c:19194:17:  [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).
    d->pwdLen = strlen(setupdlg->attr[KEY_PASSWD].attr);
data/sqliteodbc-0.9998/sqlite4odbc.c:19462: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).
	pathlen = strlen(path);
data/sqliteodbc-0.9998/sqlite4odbc.c:19627:48:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    argspace = malloc(size * sizeof (char *) + strlen(cmdline) + 1);
data/sqliteodbc-0.9998/sqlite4odbc.c:19767:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "Database", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19768:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant character.
    strncpy(prop->szValue, "", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19773:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "Timeout", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19774:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "100000", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19781:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "StepAPI", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19782:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19789:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "ShortNames", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19790:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19797:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "LongNames", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19798:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19804:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "NoCreat", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19805:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19812:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "NoWCHAR", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19813:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19820:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "FKSupport", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19821:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19828:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "SyncPragma", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19829:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "NORMAL", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19836:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "JournalMode", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19837:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "DELETE", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19842:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "LoadExt", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19843:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant character.
    strncpy(prop->szValue, "", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqlite4odbc.c:19849:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "BigInt", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqlite4odbc.c:19850:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqliteodbc.c:214:18:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    p = xmalloc_(strlen(str) + 1, file, line);
data/sqliteodbc-0.9998/sqliteodbc.c:419:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	p = xmalloc(strlen(str) + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:575: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).
	    len = strlen((char *) str);
data/sqliteodbc-0.9998/sqliteodbc.c:749:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(buf, def, bufsiz);
data/sqliteodbc-0.9998/sqliteodbc.c:795:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(d->sqlstate, st, 5);
data/sqliteodbc-0.9998/sqliteodbc.c:835:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(s->sqlstate, st, 5);
data/sqliteodbc-0.9998/sqliteodbc.c:944:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, data, sizeof (buf) - 1);
data/sqliteodbc-0.9998/sqliteodbc.c:1008: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(str);
data/sqliteodbc-0.9998/sqliteodbc.c:1054:24:  [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).
	    memmove(q, q + 1, strlen(q));
data/sqliteodbc-0.9998/sqliteodbc.c:1194:5:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
    usleep(10000);
data/sqliteodbc-0.9998/sqliteodbc.c:1351: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).
    q = p = xmalloc(strlen(typename) + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:1650:9:  [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).
	size = strlen(sql);
data/sqliteodbc-0.9998/sqliteodbc.c:1692:9:  [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).
	size = strlen(sql) * 4;
data/sqliteodbc-0.9998/sqliteodbc.c:1897:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    size = strlen(p);
data/sqliteodbc-0.9998/sqliteodbc.c:2096: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).
			    if (strlen(typename) == 7 &&
data/sqliteodbc-0.9998/sqliteodbc.c:2173:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 0, 4); buf[4] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2175:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 4, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2177:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 6, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2271:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 0, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2273:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 2, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2275:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 4, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2377:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 0, 4); buf[4] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2379:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 4, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2381:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 6, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2383:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 8, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2385:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 10, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2387:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, p + 12, 2); buf[2] = '\0';
data/sqliteodbc-0.9998/sqliteodbc.c:2391:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(buf, p + 14, m);
data/sqliteodbc-0.9998/sqliteodbc.c:2672: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(msg);
data/sqliteodbc-0.9998/sqliteodbc.c:2842:19:  [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).
		size += 3 + 3 * strlen(cols[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:2860:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:2864:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(p, cols[i], q - cols[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:2866: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:2869: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:2874: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).
		    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:3263:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(argv[0]) / 2;
data/sqliteodbc-0.9998/sqliteodbc.c:3329:19:  [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).
    bin = xmalloc(strlen(argv[0]) + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:3369:18:  [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 i, len = strlen(p->param) / 2;
data/sqliteodbc-0.9998/sqliteodbc.c:3530:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dlen = strlen(dp);
data/sqliteodbc-0.9998/sqliteodbc.c:3571:11:  [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).
			nlen = strlen(dp);
data/sqliteodbc-0.9998/sqliteodbc.c:3862: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).
		p->len = p->max = strlen(p->param);
data/sqliteodbc-0.9998/sqliteodbc.c:3890:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	p->len = strlen(p->param);
data/sqliteodbc-0.9998/sqliteodbc.c:4381:34:  [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).
		SQLINTEGER buflen, SQLINTEGER *strlen)
data/sqliteodbc-0.9998/sqliteodbc.c:4395:35:  [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).
		 SQLINTEGER buflen, SQLINTEGER *strlen)
data/sqliteodbc-0.9998/sqliteodbc.c:4437: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).
	      SQLSMALLINT *strlen, SQLSMALLINT *type,
data/sqliteodbc-0.9998/sqliteodbc.c:4454: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).
	       SQLSMALLINT *strlen, SQLSMALLINT *type,
data/sqliteodbc-0.9998/sqliteodbc.c:4472: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).
	      SQLLEN *strlen, SQLLEN *indicator)
data/sqliteodbc-0.9998/sqliteodbc.c:4604:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqliteodbc.c:5129:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqliteodbc.c:5477:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqliteodbc.c:5872:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(pname, (char *) PKtable, size);
data/sqliteodbc-0.9998/sqliteodbc.c:5882:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(fname, (char *) FKtable, size);
data/sqliteodbc-0.9998/sqliteodbc.c:5917:9:  [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).
	plen = strlen(pname);
data/sqliteodbc-0.9998/sqliteodbc.c:5922:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		int len = strlen(ptab);
data/sqliteodbc-0.9998/sqliteodbc.c:5951:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		int len = strlen(ptab);
data/sqliteodbc-0.9998/sqliteodbc.c:5982:29:  [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 nnrows, nncols, plen = strlen(pname);
data/sqliteodbc-0.9998/sqliteodbc.c:6032:17:  [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(ptab);
data/sqliteodbc-0.9998/sqliteodbc.c:6085:17:  [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(ptab);
data/sqliteodbc-0.9998/sqliteodbc.c:6454:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	sqlinLen = strlen((char *) sqlin);
data/sqliteodbc-0.9998/sqliteodbc.c:6458:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) sql, (char *) sqlin, sqlMax - 1);
data/sqliteodbc-0.9998/sqliteodbc.c:6919:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(logmsg);
data/sqliteodbc-0.9998/sqliteodbc.c:6935:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) msg, logmsg, buflen);
data/sqliteodbc-0.9998/sqliteodbc.c:7164:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = strlen(logmsg);
data/sqliteodbc-0.9998/sqliteodbc.c:7202:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    len = strlen(logmsg);
data/sqliteodbc-0.9998/sqliteodbc.c:7216:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) info, logmsg, buflen);
data/sqliteodbc-0.9998/sqliteodbc.c:8005: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 len = strlen(src); \
data/sqliteodbc-0.9998/sqliteodbc.c:8007:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(dst, src, cnt); \
data/sqliteodbc-0.9998/sqliteodbc.c:9596: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 len = strlen(attr);
data/sqliteodbc-0.9998/sqliteodbc.c:9612:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(out, start, len);
data/sqliteodbc-0.9998/sqliteodbc.c:9662:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, (char *) dsn, len);
data/sqliteodbc-0.9998/sqliteodbc.c:9674:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(dbname, buf, sizeof (dbname));
data/sqliteodbc-0.9998/sqliteodbc.c:9884:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buf, (char *) connIn, len);
data/sqliteodbc-0.9998/sqliteodbc.c:9897:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(dsn, buf, sizeof (dsn) - 1);
data/sqliteodbc-0.9998/sqliteodbc.c:9943:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(dbname, buf, sizeof (dbname));
data/sqliteodbc-0.9998/sqliteodbc.c:9974:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = min(connOutMax - 1, strlen(buf));
data/sqliteodbc-0.9998/sqliteodbc.c:9976:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) connOut, buf, len);
data/sqliteodbc-0.9998/sqliteodbc.c:10226:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	*lenp = strlen((char *) s->cursorname);
data/sqliteodbc-0.9998/sqliteodbc.c:10231:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) cursor, (char *) s->cursorname, buflen - 1);
data/sqliteodbc-0.9998/sqliteodbc.c:10235:18:  [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).
	    *lenp = min(strlen((char *) s->cursorname), buflen - 1);
data/sqliteodbc-0.9998/sqliteodbc.c:10338:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy((char *) s->cursorname, (char *) cursor, len);
data/sqliteodbc-0.9998/sqliteodbc.c:10799:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		dlen = strlen(*data);
data/sqliteodbc-0.9998/sqliteodbc.c:10869:17:  [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 dlen = strlen(*data);
data/sqliteodbc-0.9998/sqliteodbc.c:10947:7:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		    strncpy(val, *data + offs, len - doz);
data/sqliteodbc-0.9998/sqliteodbc.c:10950:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(val, *data + offs, len - doz);
data/sqliteodbc-0.9998/sqliteodbc.c:11313:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(tmp, (char *) type, sizeof (tmp));
data/sqliteodbc-0.9998/sqliteodbc.c:11318:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(tmp, (char *) type, len);
data/sqliteodbc-0.9998/sqliteodbc.c:11362:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqliteodbc.c:11632:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqliteodbc.c:11643:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(cname, (char *) col, size);
data/sqliteodbc-0.9998/sqliteodbc.c:12529:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(tname, (char *) table, size);
data/sqliteodbc-0.9998/sqliteodbc.c:12559: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(rowp[i * ncols + typec]) == 7 &&
data/sqliteodbc-0.9998/sqliteodbc.c:12653: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).
		    strlen(rowpp[i * ncols2 + typec]) == 7 &&
data/sqliteodbc-0.9998/sqliteodbc.c:13311:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy((char *) name, c->column, nameMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13317:17:  [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).
	    *nameLen = strlen((char *) name);
data/sqliteodbc-0.9998/sqliteodbc.c:13319:17:  [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).
	    *nameLen = strlen(c->column);
data/sqliteodbc-0.9998/sqliteodbc.c:13440:9:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		len = strlen(c->column);
data/sqliteodbc-0.9998/sqliteodbc.c:13517:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(valc, c->label, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13520: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).
	    *valLen = strlen(c->label);
data/sqliteodbc-0.9998/sqliteodbc.c:13527:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13530: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).
	*valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqliteodbc.c:13545:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13547: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).
	    *valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqliteodbc.c:13701:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, tn, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13711: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).
	    *valLen = strlen(valc);
data/sqliteodbc-0.9998/sqliteodbc.c:13713: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).
	    *valLen = strlen(tn);
data/sqliteodbc-0.9998/sqliteodbc.c:13730:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, z, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13733: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).
	*valLen = strlen(z);
data/sqliteodbc-0.9998/sqliteodbc.c:13744:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->table, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13747: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).
	*valLen = strlen(c->table);
data/sqliteodbc-0.9998/sqliteodbc.c:13925:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->db, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13928: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).
	*valLen = strlen(c->db);
data/sqliteodbc-0.9998/sqliteodbc.c:13942:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(valc, c->label, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13945: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).
	    *valLen = strlen(c->label);
data/sqliteodbc-0.9998/sqliteodbc.c:13952:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13955: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).
	*valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqliteodbc.c:13961:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, z, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13964: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).
	*valLen = strlen(z);
data/sqliteodbc-0.9998/sqliteodbc.c:13973:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->column, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:13975: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).
	    *valLen = strlen(c->column);
data/sqliteodbc-0.9998/sqliteodbc.c:13994:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, tn, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:14004: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).
	    *valLen = strlen(valc);
data/sqliteodbc-0.9998/sqliteodbc.c:14006: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).
	    *valLen = strlen(tn);
data/sqliteodbc-0.9998/sqliteodbc.c:14038:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy(valc, c->table, valMax);
data/sqliteodbc-0.9998/sqliteodbc.c:14041: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).
	*valLen = strlen(c->table);
data/sqliteodbc-0.9998/sqliteodbc.c:14367: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).
	    *errlen = strlen((char *) errmsg);
data/sqliteodbc-0.9998/sqliteodbc.c:14369:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	    strncpy((char *) errmsg, "[SQLite]", errmax);
data/sqliteodbc-0.9998/sqliteodbc.c:14371:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) errmsg + 8, (char *) s->logmsg, errmax - 8);
data/sqliteodbc-0.9998/sqliteodbc.c:14373: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).
	    *errlen = min(strlen((char *) s->logmsg) + 8, errmax);
data/sqliteodbc-0.9998/sqliteodbc.c:14392: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).
	    *errlen = strlen((char *) errmsg);
data/sqliteodbc-0.9998/sqliteodbc.c:14394:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
	    strncpy((char *) errmsg, "[SQLite]", errmax);
data/sqliteodbc-0.9998/sqliteodbc.c:14396:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy((char *) errmsg + 8, (char *) d->logmsg, errmax - 8);
data/sqliteodbc-0.9998/sqliteodbc.c:14398: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).
	    *errlen = min(strlen((char *) d->logmsg) + 8, errmax);
data/sqliteodbc-0.9998/sqliteodbc.c:14551: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).
	    size += 3 + 3 * strlen(cols[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:14566:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:14570:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(p, cols[i], q - cols[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:14572:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:14575:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:14580:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:14921: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).
	    size += 3 + 3 * strlen(s->rows[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:14939:11:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:14943:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(p, s->rows[i], q - s->rows[i]);
data/sqliteodbc-0.9998/sqliteodbc.c:14945:8:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		p += strlen(p) + 1;
data/sqliteodbc-0.9998/sqliteodbc.c:15301:29:  [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 (setupdlg->newDSN && strlen(dsn) == 0) {
data/sqliteodbc-0.9998/sqliteodbc.c:15648: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(setupdlg->attr[KEY_NOWCHAR].attr, "1");
data/sqliteodbc-0.9998/sqliteodbc.c:15650: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(setupdlg->attr[KEY_NOWCHAR].attr, "0");
data/sqliteodbc-0.9998/sqliteodbc.c:15654: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(setupdlg->attr[KEY_STEPAPI].attr, "1");
data/sqliteodbc-0.9998/sqliteodbc.c:15656: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(setupdlg->attr[KEY_STEPAPI].attr, "0");
data/sqliteodbc-0.9998/sqliteodbc.c:15660: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(setupdlg->attr[KEY_NOTXN].attr, "1");
data/sqliteodbc-0.9998/sqliteodbc.c:15662: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(setupdlg->attr[KEY_NOTXN].attr, "0");
data/sqliteodbc-0.9998/sqliteodbc.c:15666: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(setupdlg->attr[KEY_LONGNAM].attr, "1");
data/sqliteodbc-0.9998/sqliteodbc.c:15668: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(setupdlg->attr[KEY_LONGNAM].attr, "0");
data/sqliteodbc-0.9998/sqliteodbc.c:15897: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(setupdlg->attr[KEY_NOWCHAR].attr, "1");
data/sqliteodbc-0.9998/sqliteodbc.c:15899: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(setupdlg->attr[KEY_NOWCHAR].attr, "0");
data/sqliteodbc-0.9998/sqliteodbc.c:15903: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(setupdlg->attr[KEY_STEPAPI].attr, "1");
data/sqliteodbc-0.9998/sqliteodbc.c:15905: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(setupdlg->attr[KEY_STEPAPI].attr, "0");
data/sqliteodbc-0.9998/sqliteodbc.c:15909: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(setupdlg->attr[KEY_NOTXN].attr, "1");
data/sqliteodbc-0.9998/sqliteodbc.c:15911: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(setupdlg->attr[KEY_NOTXN].attr, "0");
data/sqliteodbc-0.9998/sqliteodbc.c:15915: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(setupdlg->attr[KEY_LONGNAM].attr, "1");
data/sqliteodbc-0.9998/sqliteodbc.c:15917: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(setupdlg->attr[KEY_LONGNAM].attr, "0");
data/sqliteodbc-0.9998/sqliteodbc.c:16035:28:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	len = min(connOutMax - 1, strlen(buf));
data/sqliteodbc-0.9998/sqliteodbc.c:16037:6:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	    strncpy((char *) connOut, buf, len);
data/sqliteodbc-0.9998/sqliteodbc.c:16305: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).
	pathlen = strlen(path);
data/sqliteodbc-0.9998/sqliteodbc.c:16470:48:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    argspace = malloc(size * sizeof (char *) + strlen(cmdline) + 1);
data/sqliteodbc-0.9998/sqliteodbc.c:16606:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "Database", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqliteodbc.c:16607:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant character.
    strncpy(prop->szValue, "", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqliteodbc.c:16612:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "Timeout", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqliteodbc.c:16613:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "100000", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqliteodbc.c:16620:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "StepAPI", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqliteodbc.c:16621:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqliteodbc.c:16629:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "NoWCHAR", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqliteodbc.c:16630:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/sqliteodbc.c:16638:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szName, "LongNames", INI_MAX_PROPERTY_NAME);
data/sqliteodbc-0.9998/sqliteodbc.c:16639:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120). Risk is low because the source is a
  constant string.
    strncpy(prop->szValue, "No", INI_MAX_PROPERTY_VALUE);
data/sqliteodbc-0.9998/tccex/sbench.c:369:6:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
	    usleep(10000);
data/sqliteodbc-0.9998/tccex/sbench.c:393:2:  [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command by
  the same name). The interaction of this function with SIGALRM and other
  timer functions such as sleep(), alarm(), setitimer(), and nanosleep() is
  unspecified (CWE-676). Use nanosleep(2) or setitimer(2) instead.
	usleep(10000);
data/sqliteodbc-0.9998/xpath.c:799:38:  [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).
	xp = sqlite3_malloc(sizeof (XEXP) + strlen(p));
data/sqliteodbc-0.9998/zipfile.c:377:26:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    ret = sqlite3_malloc(strlen(in) + 1);
data/sqliteodbc-0.9998/zipfile.c:381:10:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
	    i = strlen(in + 1);
data/sqliteodbc-0.9998/zipfile.c:434:6:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
			  strlen(argv[1]) + strlen(argv[2]));
data/sqliteodbc-0.9998/zipfile.c:434:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
			  strlen(argv[1]) + strlen(argv[2]));
data/sqliteodbc-0.9998/zipfile.c:441: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(vtab->tblname, "\"");
data/sqliteodbc-0.9998/zipfile.c:445: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(vtab->tblname, "\"");
data/sqliteodbc-0.9998/zipfile.c:972:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
		    lenp = strlen((char *) p);
data/sqliteodbc-0.9998/zipfile.c:1801:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
    n = read(pfd[0], (char *) &mb0, sizeof (mem_blk));
data/sqliteodbc-0.9998/zipfile.c:1901:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(out, name, len);
data/sqliteodbc-0.9998/zipfile.c:1931:5:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    strncpy(out, errtxt, strlen(errtxt));
data/sqliteodbc-0.9998/zipfile.c:1931:26:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    strncpy(out, errtxt, strlen(errtxt));
data/sqliteodbc-0.9998/zipfile.c:2119:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    sqllen = strlen(sql);

ANALYSIS SUMMARY:

Hits = 1493
Lines analyzed = 72385 in approximately 1.62 seconds (44709 lines/second)
Physical Source Lines of Code (SLOC) = 58935
Hits@level = [0] 328 [1] 631 [2] 591 [3]  39 [4] 232 [5]   0
Hits@level+ = [0+] 1821 [1+] 1493 [2+] 862 [3+] 271 [4+] 232 [5+]   0
Hits/KSLOC@level+ = [0+] 30.8984 [1+] 25.333 [2+] 14.6263 [3+] 4.59829 [4+] 3.93654 [5+]   0
Symlinks skipped = 1 (--allowlink overrides but see doc for security issue)
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.