summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2017-08-03 21:58:25 -0400
committerCorey Farrell <git@cfware.com>2017-08-03 22:09:28 -0400
commit7f8f3ca4dddb99b79f1b2455c04ed9f14600d758 (patch)
treea6317d19392e0946b4a9d0a4280d87190ce97167 /channels
parent2be8d91c0f5802a1f9c87b35f8f419e0db1b22d8 (diff)
Correct some leaks in unit tests.
* chan_sip: channel in test_sip_rtpqos_1. * test_config: config hook, config info and global config holder. * test_core_format: format in format_attribute_set_without_interface. * test_stream: unneeded frame duplication. * test_taskprocessor: task_data. Change-Id: I94d364d195cf3b3b5de2bf3ad565343275c7ad31
Diffstat (limited to 'channels')
-rw-r--r--channels/sip/dialplan_functions.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/channels/sip/dialplan_functions.c b/channels/sip/dialplan_functions.c
index e21bb2c24..59e841df4 100644
--- a/channels/sip/dialplan_functions.c
+++ b/channels/sip/dialplan_functions.c
@@ -484,6 +484,9 @@ done:
dialog_unlink_all(p);
dialog_unref(p, "Destroy test object");
}
+ if (chan) {
+ ast_channel_unref(chan);
+ }
ast_rtp_engine_unregister(&test_engine);
return res;
}