From 0aa489252d8fc57cd4a2d8f2a8702252be88abf8 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Fri, 16 Oct 2020 12:08:49 +0200 Subject: ipa: Fix use of null pointer in log macro Fixes: Coverity CID#214962 Fixes: Coverity CID#214963 Change-Id: Iafea915dbbbfbaa710fb5899cb9be5e507ba384c --- src/osmo-bsc/abis_nm.c | 3 --- src/osmo-bsc/bts_ipaccess_nanobts.c | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) (limited to 'src/osmo-bsc') diff --git a/src/osmo-bsc/abis_nm.c b/src/osmo-bsc/abis_nm.c index e2c328374..73dc2d018 100644 --- a/src/osmo-bsc/abis_nm.c +++ b/src/osmo-bsc/abis_nm.c @@ -55,9 +55,6 @@ #define OM_HEADROOM_SIZE 128 #define IPACC_SEGMENT_SIZE 245 -#define LOGPFOH(ss, lvl, foh, fmt, args ...) LOGP(ss, lvl, "%s: " fmt, abis_nm_dump_foh(foh), ## args) -#define DEBUGPFOH(ss, foh, fmt, args ...) LOGPFOH(ss, LOGL_DEBUG, foh, fmt, ## args) - int abis_nm_tlv_parse(struct tlv_parsed *tp, struct gsm_bts *bts, const uint8_t *buf, int len) { if (!bts->model) diff --git a/src/osmo-bsc/bts_ipaccess_nanobts.c b/src/osmo-bsc/bts_ipaccess_nanobts.c index 134d50a79..577be13f7 100644 --- a/src/osmo-bsc/bts_ipaccess_nanobts.c +++ b/src/osmo-bsc/bts_ipaccess_nanobts.c @@ -380,7 +380,7 @@ static void nm_rx_set_radio_attr_ack(struct msgb *oml_msg) struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, foh->obj_inst.trx_nr); if (!trx || foh->obj_class != NM_OC_RADIO_CARRIER) { - LOG_TRX(trx, DNM, LOGL_ERROR, "Set Radio Carrier Attr Ack received on non Radio Carrier object!\n"); + LOGPFOH(DNM, LOGL_ERROR, foh, "Set Radio Carrier Attr Ack received on non Radio Carrier object!\n"); return; } osmo_fsm_inst_dispatch(trx->mo.fi, NM_EV_SET_ATTR_ACK, NULL); @@ -392,7 +392,7 @@ static void nm_rx_set_chan_attr_ack(struct msgb *oml_msg) struct gsm_bts_trx_ts *ts = abis_nm_get_ts(oml_msg); if (!ts || foh->obj_class != NM_OC_CHANNEL) { - LOG_TS(ts, LOGL_ERROR, "Set Channel Attr Ack received on non Radio Channel object!\n"); + LOGPFOH(DNM, LOGL_ERROR, foh, "Set Channel Attr Ack received on non Radio Channel object!\n"); return; } osmo_fsm_inst_dispatch(ts->mo.fi, NM_EV_SET_ATTR_ACK, NULL); -- cgit v1.2.3