From 5a8f32703c445f7d09b5e029e85d76692626a67f Mon Sep 17 00:00:00 2001 From: Kinsey Moore Date: Fri, 19 Jul 2013 19:23:39 +0000 Subject: Filter channels used as internal mechanisms This adds new flags to the channel tech properties that flag it as different types of implementation detail used exclusively to provide a feature. Examples of channels that would have these flags include the announcement and recording channels used by confbridge which are the only two marked as such by this patch. Review: https://reviewboard.asterisk.org/r/2633/ (closes issue ASTERISK-21873) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@394808 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/parking/parking_manager.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'res/parking/parking_manager.c') diff --git a/res/parking/parking_manager.c b/res/parking/parking_manager.c index b26f90e35..02858d8bf 100644 --- a/res/parking/parking_manager.c +++ b/res/parking/parking_manager.c @@ -266,6 +266,9 @@ static struct ast_str *manager_build_parked_call_string(const struct ast_parked_ } parkee_string = ast_manager_build_channel_state_string_prefix(payload->parkee, "Parkee"); + if (!parkee_string) { + return NULL; + } if (payload->retriever) { retriever_string = ast_manager_build_channel_state_string_prefix(payload->retriever, "Retriever"); -- cgit v1.2.3