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
alex037yang
OpenXG-RAN
Commits
40e88d57
Commit
40e88d57
authored
Apr 09, 2020
by
wujing
Committed by
Robert Schmidt
Dec 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build error in --UE because of s1ap_eNB.c
(cherry picked from commit 519e6628d572c9b6cf8031632d4e22e2f8dc5b93)
parent
60b9043b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
openair3/S1AP/s1ap_eNB.c
openair3/S1AP/s1ap_eNB.c
+7
-1
No files found.
openair3/S1AP/s1ap_eNB.c
View file @
40e88d57
...
...
@@ -329,7 +329,13 @@ void s1ap_eNB_handle_sctp_association_resp(instance_t instance, sctp_new_associa
for
(
;
cnt
>
0
;
)
{
cnt
--
;
s1ap_ue_context_release
(
instance
,
(
uint32_t
)
enb_s1ap_id
[
cnt
]
);
struct
s1ap_eNB_ue_context_s
*
ue_context_p
=
NULL
;
struct
s1ap_eNB_ue_context_s
*
s1ap_ue_context_p
=
NULL
;
ue_context_p
=
s1ap_eNB_get_ue_context
(
instance_p
,
(
uint32_t
)
enb_s1ap_id
[
cnt
]);
if
(
ue_context_p
!=
NULL
)
{
s1ap_ue_context_p
=
RB_REMOVE
(
s1ap_ue_map
,
&
instance_p
->
s1ap_ue_head
,
ue_context_p
);
s1ap_eNB_free_ue_context
(
s1ap_ue_context_p
);
}
}
s1ap_mme_data_p
->
mme_name
=
0
;
s1ap_mme_data_p
->
overload_state
=
S1AP_NO_OVERLOAD
;
...
...
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