diff options
Diffstat (limited to 'plugins/!NotAdopted/Skype/gchat.c')
-rwxr-xr-x[-rw-r--r--] | plugins/!NotAdopted/Skype/gchat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/!NotAdopted/Skype/gchat.c b/plugins/!NotAdopted/Skype/gchat.c index 282e7834e2..bd3d2bb785 100644..100755 --- a/plugins/!NotAdopted/Skype/gchat.c +++ b/plugins/!NotAdopted/Skype/gchat.c @@ -151,7 +151,7 @@ static int AddChatContact(gchat_contacts *gc, char *who, TCHAR *pszRole) { gc->mJoinedCount++;
}
}
- if (ci.pszVal) miranda_sys_free (ci.pszVal);
+ if (ci.pszVal) mir_free (ci.pszVal);
free_nonutf_tchar_string (twho);
return i;
}
@@ -306,7 +306,7 @@ int __cdecl AddMembers(char *szSkypeMsg) { gce.ptszUID = gc->mJoinedContacts[i].who;
CallService(MS_GC_EVENT, 0, (LPARAM)&gce);
if (ci.pszVal) {
- miranda_sys_free (ci.pszVal);
+ mir_free (ci.pszVal);
ci.pszVal=NULL;
}
}
@@ -585,7 +585,7 @@ static void KickUser (HANDLE hContact, GCHOOK *gch) RemChatContact (GetChat(gcd.ptszID), gch->ptszUID);
DBFreeVariant(&dbv);
}
- if (ci.pszVal) miranda_sys_free (ci.pszVal);
+ if (ci.pszVal) mir_free (ci.pszVal);
}
free (ptr);
}
|