nsgmls: resolve coverity warnings related to uninitialed members in C++ classes

This commit is contained in:
Peter Howkins
2018-04-20 01:00:01 +01:00
parent 6e7e9d91e1
commit 3464e80165
25 changed files with 73 additions and 34 deletions

View File

@@ -1069,7 +1069,7 @@ AttributeList::AttributeList(const ConstPtr<AttributeDefinitionList> &def)
}
AttributeList::AttributeList()
: nSpec_(0), conref_(0)
: nSpec_(0), conref_(0), nIdrefs_(0), nEntityNames_(0)
{
}