소스 검색

Fixed CID 1375707

AlexVinS 8 년 전
부모
커밋
7a1dd7bd7d
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      lib/mapping/MapFormatJson.cpp

+ 3 - 1
lib/mapping/MapFormatJson.cpp

@@ -342,7 +342,9 @@ const std::string CMapFormatJson::HEADER_FILE_NAME = "header.json";
 const std::string CMapFormatJson::OBJECTS_FILE_NAME = "objects.json";
 
 CMapFormatJson::CMapFormatJson():
-	mapObjectResolver(make_unique<MapObjectResolver>(this))
+	fileVersionMajor(0), fileVersionMinor(0),
+	mapObjectResolver(make_unique<MapObjectResolver>(this)),
+	map(nullptr), mapHeader(nullptr)
 {
 
 }