diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-20 17:37:49 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-20 17:37:49 +0000 |
commit | dc9d27425a4134e9a7a79c1a9b921e04c02d32dc (patch) | |
tree | 11439f76cd88926bedd96b592d6e9809d8e62a90 /protocols/MRA | |
parent | bc0b5ed1e7f371820a08a9fdd275be68afe2fbe9 (diff) |
oops
git-svn-id: http://svn.miranda-ng.org/main/trunk@6139 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MRA')
-rw-r--r-- | protocols/MRA/src/MraSendCommand.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/MRA/src/MraSendCommand.cpp b/protocols/MRA/src/MraSendCommand.cpp index 4255cd8a2e..e821b3548c 100644 --- a/protocols/MRA/src/MraSendCommand.cpp +++ b/protocols/MRA/src/MraSendCommand.cpp @@ -9,6 +9,7 @@ class OutBuffer public:
OutBuffer() : m_buf(0), m_max(0), m_actual(0) {}
+ ~OutBuffer() { if (m_buf) free(m_buf); }
void* Allocate(size_t len)
{
|