mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-15 11:41:13 +03:00
Fix a problem in the LIKE and GLOB operators that may occur when the character immediately following a "%" or "*" wildcard is U+80. Reported by [forum:61bf7ccbdf].
FossilOrigin-Name: 2da677c45b643482eec39e4db7079c772760bc966dc71bf6c01658cc468f5823
This commit is contained in:
@@ -740,7 +740,7 @@ static int patternCompare(
|
||||
** c but in the other case and search the input string for either
|
||||
** c or cx.
|
||||
*/
|
||||
if( c<=0x80 ){
|
||||
if( c<0x80 ){
|
||||
char zStop[3];
|
||||
int bMatch;
|
||||
if( noCase ){
|
||||
|
||||
Reference in New Issue
Block a user