From 12b3dc23907d10023a3ab0a9235a74e4ae4619fe Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 5 Oct 2013 16:44:30 +0100 Subject: CID#707636 uninitialized members Change-Id: I7eba8ac0f676a2a16dc12ed423356539aec7148b --- basic/source/classes/image.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'basic') diff --git a/basic/source/classes/image.cxx b/basic/source/classes/image.cxx index 162fcd470dfb..c0748556651b 100644 --- a/basic/source/classes/image.cxx +++ b/basic/source/classes/image.cxx @@ -30,7 +30,7 @@ SbiImage::SbiImage() pStringOff = NULL; pStrings = NULL; pCode = NULL; - pLegacyPCode = NULL; + pLegacyPCode = NULL; nFlags = 0; nStrings = 0; nStringSize= 0; @@ -41,6 +41,8 @@ SbiImage::SbiImage() bError = false; bFirstInit = true; eCharSet = osl_getThreadTextEncoding(); + nStringIdx = 0; + nStringOff = 0; } SbiImage::~SbiImage() -- cgit