diff options
Diffstat (limited to 'protocols/SkypeClassic')
-rw-r--r-- | protocols/SkypeClassic/src/gchat.cpp | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/protocols/SkypeClassic/src/gchat.cpp b/protocols/SkypeClassic/src/gchat.cpp index 02046beeca..37e075544e 100644 --- a/protocols/SkypeClassic/src/gchat.cpp +++ b/protocols/SkypeClassic/src/gchat.cpp @@ -845,13 +845,11 @@ void GCInit(void) void GCExit(void)
{
DeleteCriticalSection (&m_GCMutex);
- for (int i=0;i<chatcount;i++) {
- if(chats[i]) {
- free(chats[i].szChatName);
- free(chats[i].mJoinedContacts);
- }
+
+ for (int i=0; i < chatcount; i++) {
+ free(chats[i].szChatName);
+ free(chats[i].mJoinedContacts);
}
- if (chats) free (chats);
- chats = NULL;
+ free(chats); chats = NULL;
chatcount = 0;
-}
\ No newline at end of file +}
|