Kaydet (Commit) 6e31fe9a authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#738772 Uninitialized pointer field

Change-Id: Ie8e62096b150ab1fa6342bd14605b30b58358d7e
üst fa8f562b
......@@ -62,9 +62,10 @@
#include "xftable.hxx"
XFRow::XFRow()
: m_pOwnerTable(NULL)
, m_nRepeat(0)
, m_nRow(0)
{
m_nRepeat = 0;
m_nRow = 0;
}
XFRow::XFRow(const XFRow& other):XFContent(other)
......
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