diff options
author | stanleyk <stanleyk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2013-02-08 13:41:41 +0000 |
---|---|---|
committer | stanleyk <stanleyk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2013-02-08 13:41:41 +0000 |
commit | 92d390da02c7a43555d929cb7e3df5edd6ec7473 (patch) | |
tree | 1b4174642d534b575bfa40ee3f5572dc753725b9 /ACE | |
parent | 5806ae0476cb77d81c3104186fcccf271cadaad8 (diff) | |
download | ATCD-92d390da02c7a43555d929cb7e3df5edd6ec7473.tar.gz |
Fix coverity issue 972947
Diffstat (limited to 'ACE')
-rw-r--r-- | ACE/ChangeLog | 7 | ||||
-rw-r--r-- | ACE/ace/CDR_Stream.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog index 05c59edcbd3..f61e0b78ac7 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,3 +1,10 @@ +Fri Feb 8 13:26:17 UTC 2013 Kevin Stanley <stanleyk@ociweb.com> + + * ace/CDR_Stream.h: + + Fix Coverity Issue 972947 - Non virtual destructor. Made + TAO_InputCDR destructor virtual. + Wed Feb 6 01:55:37 UTC 2013 Kevin Stanley <stanleyk@ociweb.com> * ace/Message_Block.cpp: diff --git a/ACE/ace/CDR_Stream.h b/ACE/ace/CDR_Stream.h index fb00f4cf25a..b114ef38e09 100644 --- a/ACE/ace/CDR_Stream.h +++ b/ACE/ace/CDR_Stream.h @@ -737,7 +737,7 @@ public: ACE_InputCDR (Transfer_Contents rhs); /// Destructor - ~ACE_InputCDR (void); + virtual ~ACE_InputCDR (void); /// Disambiguate overloading when extracting octets, chars, /// booleans, and bounded strings |