FS-4971 please try this

This commit is contained in:
Anthony Minessale 2013-01-17 09:03:40 -06:00
parent 52d558ff11
commit ff5b702886
2 changed files with 7 additions and 0 deletions

View File

@ -489,6 +489,10 @@ static switch_status_t channel_on_destroy(switch_core_session_t *session)
if (tech_pvt->write_codec.implementation) {
switch_core_codec_destroy(&tech_pvt->write_codec);
}
switch_core_session_unset_read_codec(session);
switch_core_session_unset_write_codec(session);
}
return SWITCH_STATUS_SUCCESS;

View File

@ -522,6 +522,9 @@ static switch_status_t channel_on_destroy(switch_core_session_t *session)
if (tech_pvt->write_codec.implementation) {
switch_core_codec_destroy(&tech_pvt->write_codec);
}
switch_core_session_unset_read_codec(session);
switch_core_session_unset_write_codec(session);
ftdm_channel_close(&tech_pvt->ftdm_channel);
}