Initialize m_dtd member in ValidateDTD class as NULL

This commit is contained in:
Ervin Hegedus 2018-04-23 09:20:04 +00:00 committed by Felipe Zimmerle
parent 3ee65a31c5
commit e7ea5433d5
No known key found for this signature in database
GPG Key ID: E6DFB08CE8B11277

View File

@ -93,7 +93,7 @@ class ValidateDTD : public Operator {
private: private:
std::string m_resource; std::string m_resource;
xmlDtdPtr m_dtd; xmlDtdPtr m_dtd = NULL;
#endif #endif
}; };