1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-10-22 22:13:04 +03:00

Complete the initialization of the loadable extension thunk table. Also

fix other (harmless) compiler warnings.

FossilOrigin-Name: 780d06c5e54590f677f993fa9c313989c2eab8c7
This commit is contained in:
drh
2013-03-01 23:40:26 +00:00
parent 1488052d38
commit 1d59d036de
5 changed files with 26 additions and 11 deletions

View File

@@ -972,6 +972,7 @@ static void unicodeFunc(
sqlite3_value **argv
){
const unsigned char *z = sqlite3_value_text(argv[0]);
(void)argc;
if( z && z[0] ) sqlite3_result_int(context, sqlite3Utf8Read(&z));
}