mirror of
https://github.com/jambonz/freeswitch-modules.git
synced 2025-12-19 08:57:44 +00:00
free maloc variable on mod_audio_fork (#54)
This commit is contained in:
@@ -480,7 +480,7 @@ AudioPipe::AudioPipe(const char* uuid, const char* host, unsigned int port, cons
|
||||
}
|
||||
AudioPipe::~AudioPipe() {
|
||||
if (m_audio_buffer) delete [] m_audio_buffer;
|
||||
if (m_recv_buf) delete [] m_recv_buf;
|
||||
if (m_recv_buf) free(m_recv_buf);
|
||||
}
|
||||
|
||||
void AudioPipe::connect(void) {
|
||||
|
||||
Reference in New Issue
Block a user