summaryrefslogtreecommitdiffstats
path: root/src/docparser.h
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-09-13 16:01:21 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-09-13 16:01:21 (GMT)
commit99f948c038b763028fcb95ef2a65fdbc1d5f9520 (patch)
tree463b89eccee1f90603ab4ee991ab18ef736f8166 /src/docparser.h
parentaca45fd514cadc56ac277bd54f49604708ebbb5d (diff)
downloadDoxygen-99f948c038b763028fcb95ef2a65fdbc1d5f9520.zip
Doxygen-99f948c038b763028fcb95ef2a65fdbc1d5f9520.tar.gz
Doxygen-99f948c038b763028fcb95ef2a65fdbc1d5f9520.tar.bz2
Fixing coverity messages
Note: especially latexdocvisitor (dead code that should not be dead code).
Diffstat (limited to 'src/docparser.h')
-rw-r--r--src/docparser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/docparser.h b/src/docparser.h
index 6b75426..25602cf 100644
--- a/src/docparser.h
+++ b/src/docparser.h
@@ -1370,7 +1370,7 @@ class DocHtmlTable : public CompAccept<DocHtmlTable>
{
public:
DocHtmlTable(DocNode *parent,const HtmlAttribList &attribs)
- : m_attribs(attribs) { m_caption=0; m_parent = parent; }
+ : m_attribs(attribs) { m_caption=0; m_numCols=0; m_parent = parent; }
~DocHtmlTable() { delete m_caption; }
Kind kind() const { return Kind_HtmlTable; }
uint numRows() const { return m_children.count(); }