From aa5944da78f6064f3d076d4c5f67f573a29b19df Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Wed, 2 Jun 2021 12:53:15 +0200 Subject: [PATCH] Fix T-CRNTI push pdu --- srsue/src/stack/mac/demux.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsue/src/stack/mac/demux.cc b/srsue/src/stack/mac/demux.cc index 3a2d74a65..77f666f78 100644 --- a/srsue/src/stack/mac/demux.cc +++ b/srsue/src/stack/mac/demux.cc @@ -105,7 +105,7 @@ void demux::push_pdu_temp_crnti(uint8_t* buff, uint32_t nof_bytes) pending_mac_msg.reset(); if (is_uecrid_successful) { Debug("Saved MAC PDU with Temporal C-RNTI in buffer"); - pdus.push(buff, nof_bytes, srsran::pdu_queue::DCH); + pdus.push(buff, nof_bytes, 0, srsran::pdu_queue::DCH); } else { pdus.deallocate(buff); }