1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Fix memory leaks.

This commit is contained in:
Darryl Pogue
2013-01-05 22:46:27 -08:00
parent cd53cf180d
commit 9a579d6af7

View File

@ -133,10 +133,10 @@ void plPageInfo::Read( hsStream *s )
if (version >= 5)
{
fLocation.Read( s );
fAge = s->ReadSafeString();
fAge = s->ReadSafeString_TEMP();
if (version < 6)
delete s->ReadSafeString(); // fChapter was never used, and always "District".
fPage = s->ReadSafeString();
s->ReadSafeString_TEMP(); // fChapter was never used, and always "District".
fPage = s->ReadSafeString_TEMP();
s->ReadLE( &fMajorVersion );