From d120d64b867d65d4c5674d016b9b5acd600bf3b3 Mon Sep 17 00:00:00 2001 From: Dmitry-Me Date: Fri, 27 Jan 2017 18:35:02 +0300 Subject: [PATCH] Initialize member variable --- tinyxml2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyxml2.h b/tinyxml2.h index de589bd..034f002 100755 --- a/tinyxml2.h +++ b/tinyxml2.h @@ -1177,7 +1177,7 @@ public: private: enum { BUF_SIZE = 200 }; - XMLAttribute() : _next( 0 ), _memPool( 0 ) {} + XMLAttribute() : _parseLineNum( 0 ), _next( 0 ), _memPool( 0 ) {} virtual ~XMLAttribute() {} XMLAttribute( const XMLAttribute& ); // not supported