diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-05-27 20:18:07 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-06-06 12:25:26 +0200 |
commit | 82ae0e04477a70128b496eed61d50d39f8daee93 (patch) | |
tree | a5cab3a9f453a8ddd8c5b422398dd23a31b381aa /cpp | |
parent | Fix #2 for bug 3224 - Fixed bogus absolute paths from headers generated by sl... (diff) | |
download | ice-82ae0e04477a70128b496eed61d50d39f8daee93.tar.bz2 ice-82ae0e04477a70128b496eed61d50d39f8daee93.tar.xz ice-82ae0e04477a70128b496eed61d50d39f8daee93.zip |
Fixed bug 3225 - Uninitialized attribute
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Freeze/TransactionalEvictorContext.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Freeze/TransactionalEvictorContext.cpp b/cpp/src/Freeze/TransactionalEvictorContext.cpp index a8f379b6cf6..86da89cc41a 100644 --- a/cpp/src/Freeze/TransactionalEvictorContext.cpp +++ b/cpp/src/Freeze/TransactionalEvictorContext.cpp @@ -65,7 +65,8 @@ Freeze::TransactionalEvictorDeadlockException::ice_print(ostream& out) const Freeze::TransactionalEvictorContext::TransactionalEvictorContext(const SharedDbEnvPtr& dbEnv) : _tx((new ConnectionI(dbEnv))->beginTransactionI()), - _deadlockExceptionDetected(false) + _deadlockExceptionDetected(false), + _userExceptionDetected(false) { _tx->setPostCompletionCallback(this); } |