Fixes coverity 366610

This commit is contained in:
AlaiaL 2021-04-23 15:56:21 +02:00 committed by Andre Puschmann
parent d88760f099
commit 5fd4f421e9
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ void spgw::gtpu::handle_sgi_pdu(srsran::unique_byte_buffer_t msg)
m_gtpc->send_downlink_data_notification(spgw_teid);
m_gtpc->queue_downlink_packet(spgw_teid, std::move(msg));
return;
} else if (usr_found == false && ctr_found == true) {
} else if (usr_found == true && ctr_found == false) {
m_logger.error("User plane tunnel found without a control plane tunnel present.");
} else {
send_s1u_pdu(enb_fteid, msg.get());