[Asterisk-code-review] stasis: Remove silly use of RAII VAR in stasis forward all. (asterisk[master])

Joshua Colp asteriskteam at digium.com
Tue Nov 7 09:32:46 CST 2017


Joshua Colp has submitted this change and it was merged. ( https://gerrit.asterisk.org/7028 )

Change subject: stasis: Remove silly use of RAII_VAR in stasis_forward_all.
......................................................................

stasis: Remove silly use of RAII_VAR in stasis_forward_all.

Change-Id: I46de4c968d40144d5b049966304ff66c1469fb65
---
M main/stasis.c
1 file changed, 4 insertions(+), 3 deletions(-)

Approvals:
  Richard Mudgett: Looks good to me, but someone else must approve
  Joshua Colp: Looks good to me, approved; Approved for Submit



diff --git a/main/stasis.c b/main/stasis.c
index a82e938..74d5df8 100644
--- a/main/stasis.c
+++ b/main/stasis.c
@@ -908,7 +908,7 @@
 {
 	int res;
 	size_t idx;
-	RAII_VAR(struct stasis_forward *, forward, NULL, ao2_cleanup);
+	struct stasis_forward *forward;
 
 	if (!from_topic || !to_topic) {
 		return NULL;
@@ -921,7 +921,7 @@
 
 	/* Forwards to ourselves are implicit. */
 	if (to_topic == from_topic) {
-		return ao2_bump(forward);
+		return forward;
 	}
 
 	forward->from_topic = ao2_bump(from_topic);
@@ -932,6 +932,7 @@
 	if (res != 0) {
 		ao2_unlock(from_topic);
 		ao2_unlock(to_topic);
+		ao2_ref(forward, -1);
 		return NULL;
 	}
 
@@ -941,7 +942,7 @@
 	ao2_unlock(from_topic);
 	ao2_unlock(to_topic);
 
-	return ao2_bump(forward);
+	return forward;
 }
 
 static void subscription_change_dtor(void *obj)

-- 
To view, visit https://gerrit.asterisk.org/7028
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I46de4c968d40144d5b049966304ff66c1469fb65
Gerrit-Change-Number: 7028
Gerrit-PatchSet: 1
Gerrit-Owner: Corey Farrell <git at cfware.com>
Gerrit-Reviewer: Jenkins2
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Richard Mudgett <rmudgett at digium.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20171107/6ae850cd/attachment.html>


More information about the asterisk-code-review mailing list