Commit 3b0eed2e authored by Raymond Knopp's avatar Raymond Knopp

hotfix to avoid checking for sdu_sizeP=255 in nr_rrc_data_req. If ever

the SDU has this size the function will return. This is an old piece of
code where 255 meant -1 which was what was returned from the asn1c
encoding function if the ASN.1 message was not encodable.
parent f7c3874e
......@@ -70,10 +70,6 @@ nr_rrc_data_req(
)
//------------------------------------------------------------------------------
{
if(sdu_sizeP == 255) {
LOG_D(RRC,"sdu_sizeP == 255");
return false;
}
MessageDef *message_p;
// Uses a new buffer to avoid issue with PDCP buffer content that could be changed by PDCP (asynchronous message handling).
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment