diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-06-29 02:45:06 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-06-29 02:45:06 +0000 |
commit | 8110a4f95d4c7a975215a9e447f72c4d09a59e28 (patch) | |
tree | 5fbed20acdaac112eda2362cffffb5e27029cc14 /cpp/src | |
parent | Fixed GCC build (diff) | |
download | ice-8110a4f95d4c7a975215a9e447f72c4d09a59e28.tar.bz2 ice-8110a4f95d4c7a975215a9e447f72c4d09a59e28.tar.xz ice-8110a4f95d4c7a975215a9e447f72c4d09a59e28.zip |
Fixed warning
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Freeze/TransactionI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Freeze/TransactionI.cpp b/cpp/src/Freeze/TransactionI.cpp index c40db8c8741..bf0e7d27b94 100644 --- a/cpp/src/Freeze/TransactionI.cpp +++ b/cpp/src/Freeze/TransactionI.cpp @@ -27,7 +27,7 @@ Freeze::TransactionI::commit() { assert(_txn != 0); - long txnId; + long txnId = 0; try { _connection->closeAllIterators(); @@ -79,7 +79,7 @@ Freeze::TransactionI::rollback() { assert(_txn != 0); - long txnId; + long txnId = 0; try { _connection->closeAllIterators(); |