diff --git a/src/TDB.cpp b/src/TDB.cpp index 4e2c985f2..54f9c31c6 100644 --- a/src/TDB.cpp +++ b/src/TDB.cpp @@ -414,7 +414,8 @@ bool TDB::writeCompleted (const T& t) fputs (t.compose ().c_str (), out); fclose (out); - dbChanged (); + // Note: No call to dbChanged here because this call never occurs by itself. + // It is always accompanied by an overwritePending call. return true; }