From a4337e5b245769b626920993072c18c2aa3024c1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 4 Jun 2008 20:23:02 +0000 Subject: [PATCH] - Fixed: The EndSequence structure was not fully initialized. SVN r1019 (trunk) --- docs/rh-log.txt | 1 + src/g_level.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/rh-log.txt b/docs/rh-log.txt index 3aa31663d2..666ee2eb4c 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 a885a965e3..574f7b16a6 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)) {