From: snuffy Date: Fri, 15 May 2015 03:05:52 +0000 (+1000) Subject: chan_pjsip: Fix crash during off-nominal when no endpoint specified. X-Git-Tag: 13.4.0-rc1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9114179e6bc727cd9fe593d50313c19b6e63492;p=thirdparty%2Fasterisk.git chan_pjsip: Fix crash during off-nominal when no endpoint specified. Add missing return -1 when no endpoint name is specified. ASTERISK-25086 #close Reported by: snuffy Change-Id: I9de76c2935a1f4e3f0cffe97a670106f5605e89e --- diff --git a/channels/chan_pjsip.c b/channels/chan_pjsip.c index c111cf1d3f..b7d7065f27 100644 --- a/channels/chan_pjsip.c +++ b/channels/chan_pjsip.c @@ -1815,6 +1815,7 @@ static int request(void *obj) if (ast_strlen_zero(endpoint_name)) { ast_log(LOG_ERROR, "Unable to create PJSIP channel with empty endpoint name\n"); req_data->cause = AST_CAUSE_CHANNEL_UNACCEPTABLE; + return -1; } else if (!(endpoint = ast_sorcery_retrieve_by_id(ast_sip_get_sorcery(), "endpoint", endpoint_name))) { ast_log(LOG_ERROR, "Unable to create PJSIP channel - endpoint '%s' was not found\n", endpoint_name); req_data->cause = AST_CAUSE_NO_ROUTE_DESTINATION;