]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
savs
authorAnthony Minessale <anthm@freeswitch.org>
Sat, 22 Dec 2012 14:29:19 +0000 (08:29 -0600)
committerAnthony Minessale <anthm@freeswitch.org>
Mon, 1 Apr 2013 02:27:15 +0000 (21:27 -0500)
src/mod/endpoints/mod_sofia/mod_sofia.h
src/mod/endpoints/mod_sofia/sofia_glue.c

index 417cea3efb4cffe5f64957674dedd274d8c6c25a..deefaa6dcb834eb6267d7460945fb947268bcce2 100644 (file)
@@ -679,7 +679,7 @@ struct private_object {
        switch_core_session_t *session;
        switch_channel_t *channel;
        switch_media_handle_t *media_handle;
-       switch_core_media_params_t *mparams;
+       switch_core_media_params_t mparams;
 
        switch_frame_t read_frame;
        char *codec_order[SWITCH_MAX_CODECS];
index ac9d68f7eefdf7fa043088d4689d8789e00c105c..5e2546730c3807a33c3f04ce4ec95794bd5fad73 100644 (file)
@@ -83,9 +83,6 @@ void sofia_glue_attach_private(switch_core_session_t *session, sofia_profile_t *
        switch_mutex_lock(tech_pvt->flag_mutex);
        switch_mutex_lock(profile->flag_mutex);
 
-       tech_pvt->mparams = switch_core_session_alloc(session, sizeof(*tech_pvt->mparams));
-
-
        /* copy flags from profile to the sofia private */
        for (x = 0; x < TFLAG_MAX; x++) {
                tech_pvt->flags[x] = profile->flags[x];