From 51cbbd0438ba770fa02a13ea089d2af318e63231 Mon Sep 17 00:00:00 2001 From: tron Date: Wed, 22 Dec 2004 19:16:56 +0000 Subject: (svn r1232) Plug memory leak --- train_gui.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'train_gui.c') diff --git a/train_gui.c b/train_gui.c index adcb5a790..3e1de7bae 100644 --- a/train_gui.c +++ b/train_gui.c @@ -1351,6 +1351,10 @@ static void PlayerTrainsWndProc(Window *w, WindowEvent *e) vl->resort_timer = DAY_TICKS * PERIODIC_RESORT_DAYS; break; + case WE_DESTROY: + free(vl->sort_list); + break; + case WE_TICK: /* resort the list every 20 seconds orso (10 days) */ if (--vl->resort_timer == 0) { DEBUG(misc, 1) ("Periodic resort trains list player %d station %d", -- cgit v1.2.3-54-g00ecf