diff --git a/docs/rh-log.txt b/docs/rh-log.txt index 3aa31663d..666ee2eb4 100644 --- a/docs/rh-log.txt +++ b/docs/rh-log.txt @@ -1,4 +1,5 @@ June 4, 2008 (Changes by Graf Zahl) +- Fixed: The EndSequence structure was not fully initialized. - While doing the interpolation rewrite I noticed that DScroller and DPolyAction were doing some things in their destructor that needed to be done in the Destroy method. diff --git a/src/g_level.cpp b/src/g_level.cpp index a885a965e..574f7b16a 100644 --- a/src/g_level.cpp +++ b/src/g_level.cpp @@ -897,6 +897,7 @@ static void ParseMapInfoLower (FScanner &sc, EndSequence newSeq; bool useseq = false; + memset(&newSeq, 0, sizeof(newSeq)); sc.MustGetString (); if (IsNum (sc.String)) {