This commit is contained in:
Eelco Dolstra 2010-02-22 14:24:37 +00:00
parent 9cda616949
commit 2b20318b0e
1 changed files with 0 additions and 4 deletions

View File

@ -803,8 +803,6 @@ void LocalStore::invalidatePath(const Path & path)
{
debug(format("invalidating path `%1%'") % path);
SQLiteTxn txn(db);
SQLiteStmtUse use(stmtInvalidatePath);
stmtInvalidatePath.bind(path);
@ -814,8 +812,6 @@ void LocalStore::invalidatePath(const Path & path)
/* Note that the foreign key constraints on the Refs table take
care of deleting the references entries for `path'. */
txn.commit();
}