summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-12-10 11:42:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-12-10 11:43:18 +0000
commit65deab68f7918c82026951b04a414eefee2683b2 (patch)
treebe2af3126846c38c58fed5197b0bfcaecf77a2d7 /lotuswordpro
parentbae861b7ed36b963f7060d45c7d30fd2f3223db1 (diff)
use of uninitialized variable
Change-Id: I1149eb9f5946228a2448c121e7ec7211861b3b3d
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/bencont.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/bencont.cxx b/lotuswordpro/source/filter/bencont.cxx
index 9c45a0c9b444..8255129537f2 100644
--- a/lotuswordpro/source/filter/bencont.cxx
+++ b/lotuswordpro/source/filter/bencont.cxx
@@ -226,7 +226,7 @@ BenError LtcBenContainer::SeekFromEnd(long Offset)
*/
LtcUtBenValueStream * LtcBenContainer::FindNextValueStreamWithPropertyName(const char * sPropertyName, LtcUtBenValueStream * pCurrentValueStream)
{
- CBenPropertyName * pPropertyName;
+ CBenPropertyName * pPropertyName(nullptr);
RegisterPropertyName(sPropertyName, &pPropertyName); // Get property name object
if (nullptr == pPropertyName)