[core] fix memory leak on playback, in certain error conditions (eg: native file related)
This commit is contained in:
parent
88f1a03cad
commit
8df26b480f
|
@ -1474,11 +1474,6 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_play_file(switch_core_session_t *sess
|
|||
|
||||
interval = read_impl.microseconds_per_packet / 1000;
|
||||
|
||||
if (!fh->audio_buffer) {
|
||||
switch_buffer_create_dynamic(&fh->audio_buffer, FILE_BLOCKSIZE, FILE_BUFSIZE, 0);
|
||||
switch_assert(fh->audio_buffer);
|
||||
}
|
||||
|
||||
codec_name = "L16";
|
||||
|
||||
if (!switch_core_codec_ready((&codec))) {
|
||||
|
@ -1589,6 +1584,11 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_play_file(switch_core_session_t *sess
|
|||
switch_event_fire(&event);
|
||||
}
|
||||
|
||||
if (!fh->audio_buffer) {
|
||||
switch_buffer_create_dynamic(&fh->audio_buffer, FILE_BLOCKSIZE, FILE_BUFSIZE, 0);
|
||||
switch_assert(fh->audio_buffer);
|
||||
}
|
||||
|
||||
for (;;) {
|
||||
int do_speed = 1;
|
||||
int last_speed = -1;
|
||||
|
|
Loading…
Reference in New Issue