diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-27 03:27:31 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-27 03:27:31 +0000 |
commit | 5553a5d92ba45c8e562d98d4e943f17e5bfdd501 (patch) | |
tree | 88afe9bd539f825309c7ce9253eb05f79b661abc /TAO/tao/ORB.cpp | |
parent | 303971ed36dc57013abfa110872fb64ece13cbbb (diff) | |
download | ATCD-5553a5d92ba45c8e562d98d4e943f17e5bfdd501.tar.gz |
Never assume a pointer will be initialized to null.
Diffstat (limited to 'TAO/tao/ORB.cpp')
-rw-r--r-- | TAO/tao/ORB.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp index fabcaadf883..05084e31be4 100644 --- a/TAO/tao/ORB.cpp +++ b/TAO/tao/ORB.cpp @@ -73,6 +73,7 @@ CORBA::string_dup (const CORBA::Char *str) CORBA_ORB::CORBA_ORB (void) : refcount_ (1), open_called_(CORBA::B_FALSE), + shutdown_lock_ (0), should_shutdown_(CORBA::B_FALSE), name_service_ (CORBA_Object::_nil ()), schedule_service_ (CORBA_Object::_nil ()), |