Commit 0a60085d authored by matzakos's avatar matzakos Committed by Raymond Knopp

Increase size of array storing PDCP PDU to be aligned with the expected size

parent 39f057f1
...@@ -40,7 +40,7 @@ void nr_pdcp_entity_drb_am_recv_sdu(nr_pdcp_entity_t *_entity, char *buffer, int ...@@ -40,7 +40,7 @@ void nr_pdcp_entity_drb_am_recv_sdu(nr_pdcp_entity_t *_entity, char *buffer, int
{ {
nr_pdcp_entity_drb_am_t *entity = (nr_pdcp_entity_drb_am_t *)_entity; nr_pdcp_entity_drb_am_t *entity = (nr_pdcp_entity_drb_am_t *)_entity;
int sn; int sn;
char buf[size+2]; char buf[size+3];
sn = entity->common.next_nr_pdcp_tx_sn; sn = entity->common.next_nr_pdcp_tx_sn;
......
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