Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhongxiao
OpenXG-RAN
Commits
997196fb
Commit
997196fb
authored
Apr 19, 2023
by
Siddharth Rana
Committed by
Vijay C
May 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding remaining ASAN fixes
parent
776c7abf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
openair2/RRC/LTE/MESSAGES/asn1_msg.c
openair2/RRC/LTE/MESSAGES/asn1_msg.c
+4
-2
No files found.
openair2/RRC/LTE/MESSAGES/asn1_msg.c
View file @
997196fb
...
...
@@ -2485,7 +2485,8 @@ uint8_t do_SIB5(uint8_t Mod_id,
InterFreqCarrierInfo
->
allowedMeasBandwidth
=
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
allowedMeasBandwidth
;
InterFreqCarrierInfo
->
presenceAntennaPort1
=
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
presenceAntennaPort1
;
if
(
true
==
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
cellReselectionPriority_Present
)
{
InterFreqCarrierInfo
->
cellReselectionPriority
=
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
cellReselectionPriority
;
InterFreqCarrierInfo
->
cellReselectionPriority
=
CALLOC
(
1
,
sizeof
(
LTE_CellReselectionPriority_t
));
*
(
InterFreqCarrierInfo
->
cellReselectionPriority
)
=
*
(
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
cellReselectionPriority
);
}
LOG_A
(
RRC
,
"[eNB][SIB5] CC_id:%d neighCellConfig:0x%x
\n
"
,
CC_id
,
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
neighCellConfig
);
InterFreqCarrierInfo
->
neighCellConfig
.
buf
=
CALLOC
(
1
,
sizeof
(
uint8_t
));
...
...
@@ -2493,7 +2494,8 @@ uint8_t do_SIB5(uint8_t Mod_id,
InterFreqCarrierInfo
->
neighCellConfig
.
buf
[
0
]
=
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
neighCellConfig
<<
6
;
InterFreqCarrierInfo
->
neighCellConfig
.
bits_unused
=
6
;
if
(
true
==
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
q_OffsetFreqPresent
)
{
InterFreqCarrierInfo
->
q_OffsetFreq
=
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
q_OffsetFreq
;
InterFreqCarrierInfo
->
q_OffsetFreq
=
CALLOC
(
1
,
sizeof
(
LTE_Q_OffsetRange_t
));
*
(
InterFreqCarrierInfo
->
q_OffsetFreq
)
=
*
(
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
q_OffsetFreq
);
}
if
(
true
==
configuration
->
InterFreqCarrierFreqInfo
[
CC_id
][
i
].
interFreqNeighCellList_Present
)
{
//InterFreqCarrierInfo->interFreqNeighCellList = CALLOC(1,sizeof(struct LTE_InterFreqNeighCellList));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment