Fossil

Check-in [3e77213a73]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix harmless compiler warning. [http://www.sqlite.org/src/info/580dae4615353d73|580dae4615]
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3e77213a7376fb48cad153331468ccdad6113b01
User & Date: jan.nijtmans 2015-03-11 22:31:40.701
Context
2015-03-13
01:00
When creating a new repository always generate an "initial empty check-in" for compatibility with Fossil 1.27 and earlier. check-in: a56e6bbfc6 user: drh tags: trunk
2015-03-11
23:20
Merged the latest changes from trunk. check-in: 72518c1239 user: zakero tags: skin-xekri
22:31
Fix harmless compiler warning. [http://www.sqlite.org/src/info/580dae4615353d73|580dae4615] check-in: 3e77213a73 user: jan.nijtmans tags: trunk
02:06
In the "server.wiki" document, use standard HTTP ports for the examples. check-in: e8722b014c user: drh tags: trunk
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to src/sqlite3.c.
148374
148375
148376
148377
148378
148379
148380
148381

148382
148383
148384
148385
148386
148387
148388
148374
148375
148376
148377
148378
148379
148380

148381
148382
148383
148384
148385
148386
148387
148388







-
+








      /* Loop through all columns of the table being considered for snippets.
      ** If the iCol argument to this function was negative, this means all
      ** columns of the FTS3 table. Otherwise, only column iCol is considered.
      */
      for(iRead=0; iRead<pTab->nColumn; iRead++){
        SnippetFragment sF = {0, 0, 0, 0};
        int iS;
        int iS = 0;
        if( iCol>=0 && iRead!=iCol ) continue;

        /* Find the best snippet of nFToken tokens in column iRead. */
        rc = fts3BestSnippet(nFToken, pCsr, iRead, mCovered, &mSeen, &sF, &iS);
        if( rc!=SQLITE_OK ){
          goto snippet_out;
        }