From 484fae74a2ab4a500496eec7af36dd8e34df105e Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 5 Aug 2005 08:24:12 +0000 Subject: (svn r2807) Fix two major bugs in the threaded save code: - Do not dereference a local variable which no longer exists; this lead to random crashes when saving - (Win32) Do not close a handle before it is used last There are still many major problems (race conditions and resulting memory corruption/crashes) left --- functions.h | 1 - 1 file changed, 1 deletion(-) (limited to 'functions.h') diff --git a/functions.h b/functions.h index 6948a44d8..8537e6e13 100644 --- a/functions.h +++ b/functions.h @@ -279,6 +279,5 @@ void DeterminePaths(void); void bubblesort(void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *)); bool CreateOTTDThread(void *func, void *param); -void CloseOTTDThread(void); void JoinOTTDThread(void); #endif /* FUNCTIONS_H */ -- cgit v1.2.3-54-g00ecf