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

Fix a crash caused by a LIKE pattern that consists of a single escape

character.

FossilOrigin-Name: bb9bfc3a12dfb89b1c58f5551cdc89ab7b0fbe03f285f2ed86611786ed02ffd9
This commit is contained in:
dan
2018-07-02 15:03:50 +00:00
parent 7262ca94cb
commit 6b4b88208e
5 changed files with 38 additions and 16 deletions

View File

@@ -1612,7 +1612,9 @@ static void countInverse(sqlite3_context *ctx, int argc, sqlite3_value **argv){
#endif
}
}
#endif
#else
# define countInverse 0
#endif /* SQLITE_OMIT_WINDOWFUNC */
/*
** Routines to implement min() and max() aggregate functions.