Bug 525063 - Initialize uninitialized class attributes in m-c. r=ehsan

This commit is contained in:
Tristan Bourvon
2018-04-10 21:11:02 +02:00
parent 6ca6b03ffd
commit 6095241db8
536 changed files with 5457 additions and 2818 deletions

View File

@@ -87,7 +87,14 @@ nsHtml5StackNode::isHtmlIntegrationPoint()
nsHtml5StackNode::nsHtml5StackNode(int32_t idxInTreeBuilder)
: idxInTreeBuilder(idxInTreeBuilder)
, flags{}
, name{ nullptr }
, popName{ nullptr }
, ns{}
, node{ nullptr }
, attributes{ nullptr }
, refcount(0)
, htmlCreator{ nullptr }
{
MOZ_COUNT_CTOR(nsHtml5StackNode);
}