mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-16 23:02:26 +03:00
Define the sqlite3ErrName() function only when necessary. More robust handling of unknown return codes.
FossilOrigin-Name: e47cd314371c2be6e00d96392b3892a7f3015f98
This commit is contained in:
12
manifest
12
manifest
@@ -1,5 +1,5 @@
|
|||||||
C Merge\smmap\stest\sfix\sfrom\strunk.
|
C Define\sthe\ssqlite3ErrName()\sfunction\sonly\swhen\snecessary.\sMore\srobust\shandling\sof\sunknown\sreturn\scodes.
|
||||||
D 2013-04-29T09:20:06.908
|
D 2013-04-30T07:54:42.804
|
||||||
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
|
||||||
F Makefile.in ce81671efd6223d19d4c8c6b88ac2c4134427111
|
F Makefile.in ce81671efd6223d19d4c8c6b88ac2c4134427111
|
||||||
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
|
||||||
@@ -158,7 +158,7 @@ F src/journal.c b4124532212b6952f42eb2c12fa3c25701d8ba8d
|
|||||||
F src/legacy.c 0df0b1550b9cc1f58229644735e317ac89131f12
|
F src/legacy.c 0df0b1550b9cc1f58229644735e317ac89131f12
|
||||||
F src/lempar.c cdf0a000315332fc9b50b62f3b5e22e080a0952b
|
F src/lempar.c cdf0a000315332fc9b50b62f3b5e22e080a0952b
|
||||||
F src/loadext.c c48f7f3f170e502fe0cc20748e03c6e0b5a016c2
|
F src/loadext.c c48f7f3f170e502fe0cc20748e03c6e0b5a016c2
|
||||||
F src/main.c 64c76b9acc7381d08ae1ea609852559ec5caa34e
|
F src/main.c 7531758e3167006f55cd65678d9c72a3c1a6759a
|
||||||
F src/malloc.c fe085aa851b666b7c375c1ff957643dc20a04bf6
|
F src/malloc.c fe085aa851b666b7c375c1ff957643dc20a04bf6
|
||||||
F src/mem0.c 6a55ebe57c46ca1a7d98da93aaa07f99f1059645
|
F src/mem0.c 6a55ebe57c46ca1a7d98da93aaa07f99f1059645
|
||||||
F src/mem1.c 437c7c4af964895d4650f29881df63535caaa1fa
|
F src/mem1.c 437c7c4af964895d4650f29881df63535caaa1fa
|
||||||
@@ -1060,7 +1060,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
|
|||||||
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
|
||||||
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
|
F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
|
||||||
F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
|
F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
|
||||||
P 9272009f7932b3f18006f73776e36b8ef8770d3e 52417eac3ecaec2dbbde170334358f5ddbd32501
|
P 95811877fdcbede4f61269ff1c7a6d9554f669cd
|
||||||
R cae271d9506bb2366270e651f8369050
|
R 4704202ed1648bd727fc4e08e48da493
|
||||||
U mistachkin
|
U mistachkin
|
||||||
Z f51e73792b7552ee4009f7c1e977bae2
|
Z df16913f315861e242e8bc99c3932e49
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
95811877fdcbede4f61269ff1c7a6d9554f669cd
|
e47cd314371c2be6e00d96392b3892a7f3015f98
|
||||||
11
src/main.c
11
src/main.c
@@ -1033,9 +1033,11 @@ void sqlite3RollbackAll(sqlite3 *db, int tripCode){
|
|||||||
** Return a static string containing the name corresponding to the error code
|
** Return a static string containing the name corresponding to the error code
|
||||||
** specified in the argument.
|
** specified in the argument.
|
||||||
*/
|
*/
|
||||||
|
#if defined(SQLITE_DEBUG) || defined(SQLITE_TEST) || \
|
||||||
|
defined(SQLITE_DEBUG_OS_TRACE)
|
||||||
const char *sqlite3ErrName(int rc){
|
const char *sqlite3ErrName(int rc){
|
||||||
const char *zName = 0;
|
const char *zName = 0;
|
||||||
int i;
|
int i, origRc = rc;
|
||||||
for(i=0; i<2 && zName==0; i++, rc &= 0xff){
|
for(i=0; i<2 && zName==0; i++, rc &= 0xff){
|
||||||
switch( rc ){
|
switch( rc ){
|
||||||
case SQLITE_OK: zName = "SQLITE_OK"; break;
|
case SQLITE_OK: zName = "SQLITE_OK"; break;
|
||||||
@@ -1122,9 +1124,14 @@ const char *sqlite3ErrName(int rc){
|
|||||||
case SQLITE_DONE: zName = "SQLITE_DONE"; break;
|
case SQLITE_DONE: zName = "SQLITE_DONE"; break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if( zName==0 ) zName = "SQLITE_Unknown";
|
if( zName==0 ){
|
||||||
|
static char zBuf[50];
|
||||||
|
sqlite3_snprintf(sizeof(zBuf), zBuf, "SQLITE_UNKNOWN(%d)", origRc);
|
||||||
|
zName = zBuf;
|
||||||
|
}
|
||||||
return zName;
|
return zName;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** Return a static string that describes the kind of error specified in the
|
** Return a static string that describes the kind of error specified in the
|
||||||
|
|||||||
Reference in New Issue
Block a user