Commit 2f2f21d2 authored by Dong Anyuan's avatar Dong Anyuan

Fix Coverity Scan CID 339964 (Passing &rrc_eNB_mui to function...

Fix Coverity Scan CID 339964 (Passing &rrc_eNB_mui to function rrc_eNB_process_S1AP_DOWNLINK_NAS which uses it as an array. This might corrupt or misinterpret adjacent memory locations.)
parent 61ebac43
......@@ -918,7 +918,7 @@ rrc_eNB_process_S1AP_DOWNLINK_NAS(
rrc_data_req (
&ctxt,
srb_id,
*rrc_eNB_mui++,
(*rrc_eNB_mui)++,
SDU_CONFIRM_NO,
length,
buffer,
......
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