diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2008-03-09 17:40:29 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2008-03-09 17:40:29 +0000 |
commit | 7f4ef0bcf77d88fac723a698d55ccce8de494006 (patch) | |
tree | 1b573dc1d9b1f44c5a64ed42628e3e5c60cd9e67 | |
parent | c0e72534cf1d6abeb77485abab65db0d1c159c45 (diff) |
fix for a leaked handle
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@401 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r-- | metacontacts/meta_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/metacontacts/meta_main.c b/metacontacts/meta_main.c index 4ad0b35..e3a507e 100644 --- a/metacontacts/meta_main.c +++ b/metacontacts/meta_main.c @@ -150,6 +150,7 @@ __declspec(dllexport)int Unload(void) {
// see also meta_services.c, Meta_PreShutdown
Meta_CloseHandles();
+ CloseHandle( metaMainThread );
//MessageBox(0, "Unload complete", "MC", MB_OK);
return 0;
}
|