diff options
| author | jackpoz <giacomopoz@gmail.com> | 2015-01-20 22:55:06 +0100 |
|---|---|---|
| committer | jackpoz <giacomopoz@gmail.com> | 2015-01-20 22:55:06 +0100 |
| commit | 0edc35b9219da35566e018f2354315957bb07667 (patch) | |
| tree | 4789f6e2b4c00a8cc3a547b0457a6fd3bdf76f8d /src/tools/map_extractor | |
| parent | 0ceb8003ee40d3766e217749aca86bc6a301537a (diff) | |
Core/Misc: Fix static analysis issues
Fix some static analysis issues reported by Coverity
Diffstat (limited to 'src/tools/map_extractor')
| -rw-r--r-- | src/tools/map_extractor/dbcfile.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/map_extractor/dbcfile.cpp b/src/tools/map_extractor/dbcfile.cpp index 893756321dd..edbcd82994f 100644 --- a/src/tools/map_extractor/dbcfile.cpp +++ b/src/tools/map_extractor/dbcfile.cpp @@ -21,7 +21,8 @@ #include "dbcfile.h" DBCFile::DBCFile(HANDLE file) : - _file(file), _data(NULL), _stringTable(NULL) + _file(file), _recordSize(0), _recordCount(0), _fieldCount(0), + _stringSize(0), _data(NULL), _stringTable(NULL) { } |
