[wpdev-commits] wolfpack ChangeLog,1.49,1.50 basechar.cpp,1.146,1.147
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-09-14 00:32:08
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv332 Modified Files: ChangeLog basechar.cpp Log Message: bugfixes Index: basechar.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/basechar.cpp,v retrieving revision 1.146 retrieving revision 1.147 diff -C2 -d -r1.146 -r1.147 *** basechar.cpp 14 Sep 2004 00:00:36 -0000 1.146 --- basechar.cpp 14 Sep 2004 00:31:57 -0000 1.147 *************** *** 3407,3410 **** --- 3407,3419 ---- } + // Kill all timers + TimerContainer::iterator iter = timers_.begin(); + while ( iter != timers_.end() ) { + Timers::instance()->erase( *iter ); + delete *iter; + ++iter; + } + timers_.clear(); + removeFromView( false ); Index: ChangeLog =================================================================== RCS file: /cvsroot/wpdev/wolfpack/ChangeLog,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** ChangeLog 14 Sep 2004 00:14:39 -0000 1.49 --- ChangeLog 14 Sep 2004 00:31:57 -0000 1.50 *************** *** 9,12 **** --- 9,14 ---- - The server will now only process one action per loop. - Fixed bug #0000305. (Documentation fix) + - Fixed a memory leak in char.dispel. + - Fixed bug #0000307. (Timers not being deleted with character) Wolfpack 12.9.10 Beta (10. September 2004) |