Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Commits
7c7172ca
Commit
7c7172ca
authored
8 years ago
by
Gabriel
Browse files
Options
Downloads
Patches
Plain Diff
RLC AM fix bad pointer init in ReSegmentation
parent
b218eea8
No related branches found
No related tags found
2 merge requests
!168
Develop integration w13
,
!167
Bugfix 189 rlc am fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_retransmit.c
+1
-1
1 addition, 1 deletion
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_retransmit.c
with
1 addition
and
1 deletion
openair2/LAYER2/RLC/AM_v9.3.0/rlc_am_retransmit.c
+
1
−
1
View file @
7c7172ca
...
...
@@ -352,13 +352,13 @@ mem_block_t* rlc_am_retransmit_get_am_segment(
{
/* Step 1 */
/* Find the SDU index in the original PDU containing retx_so_start */
uint16_t
temp_read
=
((
*
pdu_original_header_p
)
<<
8
)
|
(
*
(
pdu_original_header_p
+
1
));
sdu_size_t
sdu_size
=
0
;
sdu_size_t
data_size
=
0
;
sdu_size_t
header_segment_length
=
RLC_AM_PDU_SEGMENT_HEADER_MIN_SIZE
;
pdu_original_header_p
=
pdu_mngt
->
first_byte
+
2
;
li_bit_offset
=
4
;
/* toggle between 0 and 4 */
li_jump_offset
=
1
;
/* toggle between 1 and 2 */
uint16_t
temp_read
=
((
*
pdu_original_header_p
)
<<
8
)
|
(
*
(
pdu_original_header_p
+
1
));
/* Read first LI */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment