From cb6d675cf48242a441e3368fe0f214be20b28560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 19 Oct 2005 22:26:49 +0000 Subject: [PATCH] Aborting transactions doesn't change the number of unwritten transactions - that counter does not take the current transaction into account. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14434 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/file_systems/bfs/Journal.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/add-ons/kernel/file_systems/bfs/Journal.cpp b/src/add-ons/kernel/file_systems/bfs/Journal.cpp index c296a518f8..439673e739 100644 --- a/src/add-ons/kernel/file_systems/bfs/Journal.cpp +++ b/src/add-ons/kernel/file_systems/bfs/Journal.cpp @@ -762,7 +762,6 @@ Journal::_TransactionDone(bool success) else cache_abort_transaction(fVolume->BlockCache(), fTransactionID); - fUnwrittenTransactions--; return B_OK; }