1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Hush some harmless compiler warnings in the URI parsing logic.

FossilOrigin-Name: 0206bc6f87bb9393218a380fc5b18039d334a8d8
This commit is contained in:
drh
2011-06-03 14:19:10 +00:00
parent 9fd301bb6a
commit 45caededba
3 changed files with 10 additions and 10 deletions

View File

@@ -1938,9 +1938,9 @@ int sqlite3ParseUri(
const char *z;
int mode;
} *aMode = 0;
char *zModeType;
int mask;
int limit;
char *zModeType = 0;
int mask = 0;
int limit = 0;
if( nOpt==5 && memcmp("cache", zOpt, 5)==0 ){
static struct OpenMode aCacheMode[] = {