Differences From Artifact [d9d660efbe]:
- File src/glob.c — part of check-in [c8c5646879] at 2014-01-04 20:51:53 on branch sqlite-min-to-3.7.17 — Increase minimum SQLite requirement to 3.7.17, and make efficient use of the function sqlite3_strglob. This eliminates unnecessand sqlite (user: jan.nijtmans size: 6159)
To Artifact [f5956d9dfc]:
- File src/glob.c — part of check-in [70a374d9a3] at 2014-01-04 23:00:06 on branch sqlite-min-to-3.7.17 — Fix use of sqlite3_strglob: 0 means there is a match (user: jan.nijtmans size: 6160)
| ︙ | |||
147 148 149 150 151 152 153 | 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | - + |
**
** A NULL glob matches nothing.
*/
int glob_match(Glob *pGlob, const char *zString){
int i;
if( pGlob==0 ) return 0;
for(i=0; i<pGlob->nPattern; i++){
|
| ︙ |