Fix mistake in writting packet twice to upper layers.

This commit is contained in:
Pedro Alvarez 2020-02-17 11:27:21 +00:00 committed by Andre Puschmann
parent fdd67c3865
commit d3d5da682e
1 changed files with 0 additions and 1 deletions

View File

@ -157,7 +157,6 @@ void pdcp_entity_lte::write_pdu(unique_byte_buffer_t pdu)
handle_srb_pdu(std::move(pdu));
} else if (is_drb() && rlc->rb_is_um(lcid)) {
handle_um_drb_pdu(std::move(pdu));
gw->write_pdu(lcid, std::move(pdu));
} else if (is_drb() && !rlc->rb_is_um(lcid)) {
handle_am_drb_pdu(std::move(pdu));
} else {