1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix minor problems on this branch.

FossilOrigin-Name: 19c2e4b2f164521eab84cb0a0e12984be9431eaedd001dd3671e9ea1a6212353
This commit is contained in:
dan
2018-05-19 14:15:29 +00:00
parent e2f781b9d1
commit b6e9f7a4d1
9 changed files with 205 additions and 30 deletions

View File

@@ -3831,7 +3831,7 @@ expr_code_doover:
pDef = sqlite3FindFunction(db, "unknown", nFarg, enc, 0);
}
#endif
if( pDef==0 /* || pDef->xFinalize!=0 */ ){
if( pDef==0 || pDef->xFinalize!=0 ){
sqlite3ErrorMsg(pParse, "unknown function: %s()", zId);
break;
}