From c99ed2a8eb8d1f8e494478071dde0e0f2da2341c Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 13 Aug 2007 18:41:11 +0000 Subject: [PATCH] fixed another Handle leak in same --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401325 --- plugins/admin-sql-prefetch.sp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/admin-sql-prefetch.sp b/plugins/admin-sql-prefetch.sp index 927e8d81..9e823952 100644 --- a/plugins/admin-sql-prefetch.sp +++ b/plugins/admin-sql-prefetch.sp @@ -331,6 +331,11 @@ FetchGroups(Handle:db) } } } + + if (immunity_list != INVALID_HANDLE) + { + CloseHandle(immunity_list); + } } CloseHandle(groups);