~ci-train-bot/url-dispatcher/url-dispatcher-ubuntu-yakkety-landing-061

« back to all changes in this revision

Viewing changes to service/url-db.c

  • Committer: CI bot
  • Author(s): Jussi Pakkanen
  • Date: 2014-10-31 15:50:49 UTC
  • mfrom: (74.1.8 url-dispatcher)
  • Revision ID: ps-jenkins@lists.canonical.com-20141031155049-m4fu0cnmriksccmp
General cleanups 
Approved by: Ted Gould, PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
340
340
 
341
341
        sqlite3_bind_text(stmt, 1, path, -1, SQLITE_TRANSIENT);
342
342
 
343
 
        exec_status = SQLITE_ROW;
344
343
        while ((exec_status = sqlite3_step(stmt)) == SQLITE_ROW) {
345
344
        }
346
345