Merge pull request #538 from Dmitry-Me/suppressC6011

Suppress C6011 code analysis false positive warning
This commit is contained in:
Lee Thomason
2017-03-06 12:49:35 -08:00
committed by GitHub

View File

@@ -1838,6 +1838,7 @@ XMLAttribute* XMLElement::CreateAttribute()
{
TIXMLASSERT( sizeof( XMLAttribute ) == _document->_attributePool.ItemSize() );
XMLAttribute* attrib = new (_document->_attributePool.Alloc() ) XMLAttribute();
TIXMLASSERT( attrib );
attrib->_memPool = &_document->_attributePool;
attrib->_memPool->SetTracked();
return attrib;