summaryrefslogtreecommitdiff
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:33 +0000
commit84facdc8305f1d00f661e58aa0c474c7233d47dc (patch)
tree0f66541c9d44dfed83ff4c2ef8be3afadb6f9ece
parent5f469a2a1af8bff36fc3a5849a1500345febdba4 (diff)
use of uninitialized variable
Change-Id: I1149eb9f5946228a2448c121e7ec7211861b3b3d (cherry picked from commit 65deab68f7918c82026951b04a414eefee2683b2)
-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)