Browse Source

compile fix for with_transcoding=no

closes #927

Change-Id: I0f53f31dce31990d999516173be4b483d90b4021
pull/940/head
Richard Fuchs 6 years ago
parent
commit
7ea6389c56
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/codec.c

+ 1
- 1
daemon/codec.c View File

@ -804,8 +804,8 @@ void codec_handlers_free(struct call_media *m) {
g_hash_table_destroy(m->codec_handlers); g_hash_table_destroy(m->codec_handlers);
m->codec_handlers = NULL; m->codec_handlers = NULL;
m->codec_handler_cache = NULL; m->codec_handler_cache = NULL;
g_queue_clear_full(&m->codec_handlers_store, __codec_handler_free);
#ifdef WITH_TRANSCODING #ifdef WITH_TRANSCODING
g_queue_clear_full(&m->codec_handlers_store, __codec_handler_free);
m->dtmf_injector = NULL; m->dtmf_injector = NULL;
#endif #endif
} }


Loading…
Cancel
Save