diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-21 10:36:18 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-21 10:36:18 +0000 |
commit | ae030c74dac83ff84ae5d7148c474b6cb1f12791 (patch) | |
tree | d42bff4049e0b569263c6b10c4bebca944aa8318 /plugins/TabSRMM/src/sendqueue.h | |
parent | c1c2c9dd53e39554eacac588551985376b5ea5a7 (diff) |
memory allocation problem
git-svn-id: http://svn.miranda-ng.org/main/trunk@4500 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/sendqueue.h')
-rw-r--r-- | plugins/TabSRMM/src/sendqueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/sendqueue.h b/plugins/TabSRMM/src/sendqueue.h index 8d6d470fde..a5b2e63d69 100644 --- a/plugins/TabSRMM/src/sendqueue.h +++ b/plugins/TabSRMM/src/sendqueue.h @@ -77,7 +77,7 @@ public: ~SendQueue()
{
for (int i = 0; i < NR_SENDJOBS; i++)
- free(m_jobs[i].szSendBuffer);
+ mir_free(m_jobs[i].szSendBuffer);
}
SendJob *getJobByIndex(const int index) { return(&m_jobs[index]); }
|