Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix an over-length line in glob.c. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9232fd6946a5d23d1e125d2f97004dc7 |
User & Date: | drh 2012-04-27 12:31:24.794 |
Context
2012-04-27
| ||
13:41 | Provide the "public-pages" glob pattern that can allow anonymous users to access embedded documentation on sites where the source code should not be accessible to anonymous users. ... (check-in: 79ef9618 user: drh tags: trunk) | |
12:31 | Fix an over-length line in glob.c. ... (check-in: 9232fd69 user: drh tags: trunk) | |
2012-04-24
| ||
13:36 | Update to the latest SQLite version 3.7.12 beta. ... (check-in: 6cfd8ecc user: drh tags: trunk) | |
Changes
Changes to src/glob.c.
︙ | ︙ | |||
108 109 110 111 112 113 114 | if( zPatternList==0 || zPatternList[0]==0 ) return 0; nList = strlen(zPatternList); p = fossil_malloc( sizeof(*p) + nList+1 ); memset(p, 0, sizeof(*p)); z = (char*)&p[1]; memcpy(z, zPatternList, nList+1); while( z[0] ){ | | > > | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | if( zPatternList==0 || zPatternList[0]==0 ) return 0; nList = strlen(zPatternList); p = fossil_malloc( sizeof(*p) + nList+1 ); memset(p, 0, sizeof(*p)); z = (char*)&p[1]; memcpy(z, zPatternList, nList+1); while( z[0] ){ while( z[0]==',' || z[0]==' ' || z[0]=='\n' || z[0]=='\r' ){ z++; /* Skip leading spaces and newlines */ } if( z[0]=='\'' || z[0]=='"' ){ delimiter = z[0]; z++; }else{ delimiter = ','; } if( z[0]==0 ) break; |
︙ | ︙ |