mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
Fixed refcounting problems with chanspy AMI support.
The ast_multi_channel_blob_get_channel function does not bump the refcount on the channel snapshot that it returns. This is typical for Stasis message payloads, since being immutable means that the object won't get unreffed out from underneath you. The manager code for chanspy was unreffing the snapshots it got out of the multi-channel blob, which was one unref too many. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@390584 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -859,7 +859,7 @@ static void channel_chanspy_stop_cb(void *data, struct stasis_subscription *sub,
|
||||
struct stasis_topic *topic, struct stasis_message *message)
|
||||
{
|
||||
RAII_VAR(struct ast_str *, spyer_channel_string, NULL, ast_free);
|
||||
RAII_VAR(struct ast_channel_snapshot *, spyer, NULL, ao2_cleanup);
|
||||
struct ast_channel_snapshot *spyer;
|
||||
struct ast_multi_channel_blob *payload = stasis_message_data(message);
|
||||
|
||||
spyer = ast_multi_channel_blob_get_channel(payload, "spyer_channel");
|
||||
@@ -883,8 +883,8 @@ static void channel_chanspy_start_cb(void *data, struct stasis_subscription *sub
|
||||
{
|
||||
RAII_VAR(struct ast_str *, spyer_channel_string, NULL, ast_free);
|
||||
RAII_VAR(struct ast_str *, spyee_channel_string, NULL, ast_free);
|
||||
RAII_VAR(struct ast_channel_snapshot *, spyer, NULL, ao2_cleanup);
|
||||
RAII_VAR(struct ast_channel_snapshot *, spyee, NULL, ao2_cleanup);
|
||||
struct ast_channel_snapshot *spyer;
|
||||
struct ast_channel_snapshot *spyee;
|
||||
struct ast_multi_channel_blob *payload = stasis_message_data(message);
|
||||
|
||||
spyer = ast_multi_channel_blob_get_channel(payload, "spyer_channel");
|
||||
|
Reference in New Issue
Block a user