Skip to content

Commit

Permalink
- fixed comparison with uninitialized data in MAPINFO parser
Browse files Browse the repository at this point in the history
This issue was reported by Valgrind
  • Loading branch information
alexey-lysiuk committed Feb 23, 2020
1 parent 04ce0b6 commit 359e792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gamedata/g_mapinfo.cpp
Expand Up @@ -61,7 +61,7 @@ TArray<FEpisode> AllEpisodes;

extern TMap<int, FString> HexenMusic;

TArray<int> ParsedLumps(8, true);
TArray<int> ParsedLumps(8);

//==========================================================================
//
Expand Down

0 comments on commit 359e792

Please sign in to comment.