chiark / gitweb /
transaction: abort does not need to use recursive deletion
[elogind.git] / src / core / transaction.c
index 394c18135232663b93bd025d17f9d96360308cd7..8b4116806bf4cd62de045fe7c3cceef13ef45f39 100644 (file)
@@ -51,7 +51,7 @@ void transaction_abort(Transaction *tr) {
         assert(tr);
 
         while ((j = hashmap_first(tr->jobs)))
-                transaction_delete_job(tr, j, true);
+                transaction_delete_job(tr, j, false);
 
         assert(hashmap_isempty(tr->jobs));
 }