Fossil

Check-in [6a56db89]
Login

Check-in [6a56db89]

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

Overview
Comment:Added a missing finalize.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | jan-manifest-tags
Files: files | file ages | folders
SHA1: 6a56db89f66fb1b2e1de9308e9274eac5f1d48dc
User & Date: jan 2016-01-04 00:19:00
Context
2016-01-04
00:22
Fix: Extract filename for manifest.tags. ... (check-in: 185669ce user: jan tags: jan-manifest-tags)
00:19
Added a missing finalize. ... (check-in: 6a56db89 user: jan tags: jan-manifest-tags)
2016-01-03
23:55
Add manifest.tags to tarballs when appropriate, and decouple manifest and manifest.uuid. ... (check-in: 80ceedbd user: jan tags: jan-manifest-tags)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/checkout.c.
199
200
201
202
203
204
205

206
207
208
209
210
211
212
                    "   AND tag.tagname GLOB 'sym-*'", rid);
  while( db_step(&stmt)==SQLITE_ROW ){
    const char *zName;
    zName = db_column_text(&stmt, 0);
    blob_appendf(pOut, "%s\n", zName);
  }
  db_reset(&stmt);

}


/*
** COMMAND: checkout*
** COMMAND: co*
**







>







199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
                    "   AND tag.tagname GLOB 'sym-*'", rid);
  while( db_step(&stmt)==SQLITE_ROW ){
    const char *zName;
    zName = db_column_text(&stmt, 0);
    blob_appendf(pOut, "%s\n", zName);
  }
  db_reset(&stmt);
  db_finalize(&stmt);
}


/*
** COMMAND: checkout*
** COMMAND: co*
**