hnbgw_cn.c: Guard against null ss7 ptr during init

Fixes: Coverity CID#272989
Change-Id: Ic787d52a3c2e73ac272735a33b20bb94e29fad95
This commit is contained in:
Pau Espin 2022-06-29 18:50:23 +02:00
parent 44dfe698fa
commit 7eb89ec9fe
1 changed files with 2 additions and 0 deletions

View File

@ -541,6 +541,8 @@ int hnbgw_cnlink_init(struct hnb_gw *gw, const char *stp_host, uint16_t stp_port
LOGP(DRANAP, LOGL_NOTICE, "No cs7 instance configured for IuCS nor IuPS,"
" creating default instance\n");
ss7 = osmo_ss7_instance_find_or_create(gw, 0);
if (!ss7)
return -1;
ss7->cfg.primary_pc = (23 << 3) + 5;
}