From 504803cb6dbeebcaec969dae9d71f7e78e7bd725 Mon Sep 17 00:00:00 2001 From: faketruth Date: Tue, 14 Feb 2012 12:29:39 +0000 Subject: Fixed the same leak in FireSimulator git-svn-id: http://mc-server.googlecode.com/svn/trunk@253 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cFireSimulator.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'source/cFireSimulator.h') diff --git a/source/cFireSimulator.h b/source/cFireSimulator.h index fba71fece..ef2da6756 100644 --- a/source/cFireSimulator.h +++ b/source/cFireSimulator.h @@ -25,8 +25,9 @@ protected: virtual bool BurnBlockAround(int a_X, int a_Y, int a_Z); virtual bool BurnBlock(int a_X, int a_Y, int a_Z); - std::vector *m_Blocks; - std::vector *m_Buffer; + typedef std::vector BlockList; + BlockList *m_Blocks; + BlockList *m_Buffer; - std::vector *m_BurningBlocks; + BlockList *m_BurningBlocks; }; \ No newline at end of file -- cgit v1.2.3