Fixed a memory leak.

This commit is contained in:
Greyscale 2009-06-25 17:47:37 -07:00
parent 735839c19c
commit b4789dc5ef
1 changed files with 6 additions and 0 deletions

View File

@ -90,6 +90,9 @@ SayHooksGetPublicChatTrigger(String:trigger[], maxlen)
{ {
strcopy(trigger, maxlen, "N/A"); strcopy(trigger, maxlen, "N/A");
} }
// Close the handle.
CloseHandle(kvCore);
} }
/** /**
@ -126,4 +129,7 @@ SayHooksGetSilentChatTrigger(String:trigger[], maxlen)
{ {
strcopy(trigger, maxlen, "N/A"); strcopy(trigger, maxlen, "N/A");
} }
// Close the handle.
CloseHandle(kvCore);
} }