summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2008-05-27 20:18:07 +0200
committerBenoit Foucher <benoit@zeroc.com>2008-06-06 12:25:26 +0200
commit82ae0e04477a70128b496eed61d50d39f8daee93 (patch)
treea5cab3a9f453a8ddd8c5b422398dd23a31b381aa /cpp
parentFix #2 for bug 3224 - Fixed bogus absolute paths from headers generated by sl... (diff)
downloadice-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.cpp3
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);
}