summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-07-02 03:12:28 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-07-02 03:12:28 +0000
commitde30f4a2d435491c39b93134135e0f7dfaf156ea (patch)
tree7c32821be13e9cf8e7cfa719e022393b6189d2db /TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp
parent4249aa7d48a04f033d06ea648170719a0879a9ab (diff)
downloadATCD-de30f4a2d435491c39b93134135e0f7dfaf156ea.tar.gz
Added all initializable Cubit_Server members to the
Cubit_Server constructor member initializer list. This fixes a segmentation fault that occurs in the ~Cubit_Server destructor when deleting an uninitialized factory_impl_ member.
Diffstat (limited to 'TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp')
-rw-r--r--TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp
index 847ba10d29e..9315f9be064 100644
--- a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp
+++ b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp
@@ -6,7 +6,12 @@
ACE_RCSID(IDL_Cubit, Cubit_Server, "$Id$")
Cubit_Server::Cubit_Server (void)
- : ior_output_file_ (0)
+ : ior_output_file_ (0),
+ orb_manager_ (),
+ factory_impl_ (0),
+ factory_id_ (),
+ argc_ (0),
+ argv_ (0)
{
}