[asterisk-commits] res pjsip session.c: Add some helpful comments and minor twe... (asterisk[master])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jul 16 20:33:15 CDT 2015
Matt Jordan has submitted this change and it was merged.
Change subject: res_pjsip_session.c: Add some helpful comments and minor tweaks.
......................................................................
res_pjsip_session.c: Add some helpful comments and minor tweaks.
Change-Id: I742aeeaf5f760593f323a00fb691affe22e35743
---
M res/res_pjsip_session.c
1 file changed, 9 insertions(+), 2 deletions(-)
Approvals:
Mark Michelson: Looks good to me, but someone else must approve
Anonymous Coward #1000019: Verified
Matt Jordan: Looks good to me, approved
diff --git a/res/res_pjsip_session.c b/res/res_pjsip_session.c
index 1e92ed0..d32213e 100644
--- a/res/res_pjsip_session.c
+++ b/res/res_pjsip_session.c
@@ -1212,8 +1212,9 @@
static int add_session_media(void *obj, void *arg, int flags)
{
struct sdp_handler_list *handler_list = obj;
- struct ast_sip_session * session = arg;
+ struct ast_sip_session *session = arg;
RAII_VAR(struct ast_sip_session_media *, session_media, NULL, ao2_cleanup);
+
session_media = ao2_alloc(sizeof(*session_media) + strlen(handler_list->stream_type), session_media_dtor);
if (!session_media) {
return CMP_STOP;
@@ -1253,9 +1254,11 @@
struct ast_sip_session *ast_sip_session_alloc(struct ast_sip_endpoint *endpoint,
struct ast_sip_contact *contact, pjsip_inv_session *inv_session)
{
- RAII_VAR(struct ast_sip_session *, session, ao2_alloc(sizeof(*session), session_destructor), ao2_cleanup);
+ RAII_VAR(struct ast_sip_session *, session, NULL, ao2_cleanup);
struct ast_sip_session_supplement *iter;
int dsp_features = 0;
+
+ session = ao2_alloc(sizeof(*session), session_destructor);
if (!session) {
return NULL;
}
@@ -1296,6 +1299,7 @@
if (dsp_features) {
if (!(session->dsp = ast_dsp_new())) {
+ /* Release the ref held by session->inv_session */
ao2_ref(session, -1);
return NULL;
}
@@ -1304,6 +1308,7 @@
}
if (add_supplements(session)) {
+ /* Release the ref held by session->inv_session */
ao2_ref(session, -1);
return NULL;
}
@@ -2280,6 +2285,8 @@
ast_sip_dialog_set_serializer(session->inv_session->dlg, NULL);
ast_sip_dialog_set_endpoint(session->inv_session->dlg, NULL);
+
+ /* Now we can release the ref that was held by session->inv_session */
ao2_cleanup(session);
return 0;
}
--
To view, visit https://gerrit.asterisk.org/910
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I742aeeaf5f760593f323a00fb691affe22e35743
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Mark Michelson <mmichelson at digium.com>
Gerrit-Reviewer: Matt Jordan <mjordan at digium.com>
More information about the asterisk-commits
mailing list