mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fixed comparison with uninitialized data in MAPINFO parser
This issue was reported by Valgrind
This commit is contained in:
parent
04ce0b6ec6
commit
359e7927de
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ TArray<FEpisode> AllEpisodes;
|
|||
|
||||
extern TMap<int, FString> HexenMusic;
|
||||
|
||||
TArray<int> ParsedLumps(8, true);
|
||||
TArray<int> ParsedLumps(8);
|
||||
|
||||
//==========================================================================
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue