Kaydet (Commit) 9a8e6c71 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1202907 Uninitialized scalar variable

Change-Id: I7c33a9ecaec6a771fa2a22c0ddb38a0a9b1d2df7
üst 159acfe7
......@@ -260,6 +260,7 @@ SvStream& ReadTextType(SvStream& rInp, TextType& rText)
}
SvStream& ReadBmapType(SvStream& rInp, BmapType& rBmap)
{
memset((char*)&rBmap.Last, 0, BmapSize);
rInp.Read((char*)&rBmap.Last,BmapSize);
#if defined OSL_BIGENDIAN
SWAPOBJK (rBmap);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment