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
Michael Black
OpenXG-RAN
Commits
8d072754
Commit
8d072754
authored
Mar 28, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Write-only variable: suppress warning, as we decode NAS message
parent
852a6c4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
openair3/NAS/COMMON/API/NETWORK/nas_message.c
openair3/NAS/COMMON/API/NETWORK/nas_message.c
+5
-0
No files found.
openair3/NAS/COMMON/API/NETWORK/nas_message.c
View file @
8d072754
...
...
@@ -986,6 +986,7 @@ static int _nas_message_decrypt(
length
,
security_header_type
);
memcpy
(
dest
,
src
,
length
);
DECODE_U8
(
dest
,
*
(
uint8_t
*
)(
&
header
),
size
);
(
void
)
size
;
// prevent warning of unused variable, but we have to decode it
LOG_FUNC_RETURN
(
header
.
protocol_discriminator
);
//LOG_FUNC_RETURN (length);
break
;
...
...
@@ -1022,6 +1023,7 @@ static int _nas_message_decrypt(
/* Decode the first octet (security header type or EPS bearer identity,
* and protocol discriminator) */
DECODE_U8
(
dest
,
*
(
uint8_t
*
)(
&
header
),
size
);
(
void
)
size
;
// prevent warning of unused variable, but we have to decode it
LOG_FUNC_RETURN
(
header
.
protocol_discriminator
);
...
...
@@ -1056,6 +1058,7 @@ static int _nas_message_decrypt(
/* Decode the first octet (security header type or EPS bearer identity,
* and protocol discriminator) */
DECODE_U8
(
dest
,
*
(
uint8_t
*
)(
&
header
),
size
);
(
void
)
size
;
// prevent warning of unused variable, but we have to decode it
LOG_FUNC_RETURN
(
header
.
protocol_discriminator
);
}
...
...
@@ -1071,6 +1074,7 @@ static int _nas_message_decrypt(
/* Decode the first octet (security header type or EPS bearer identity,
* and protocol discriminator) */
DECODE_U8
(
dest
,
*
(
uint8_t
*
)(
&
header
),
size
);
(
void
)
size
;
// prevent warning of unused variable, but we have to decode it
LOG_FUNC_RETURN
(
header
.
protocol_discriminator
);
...
...
@@ -1084,6 +1088,7 @@ static int _nas_message_decrypt(
/* Decode the first octet (security header type or EPS bearer identity,
* and protocol discriminator) */
DECODE_U8
(
dest
,
*
(
uint8_t
*
)(
&
header
),
size
);
(
void
)
size
;
// prevent warning of unused variable, but we have to decode it
LOG_FUNC_RETURN
(
header
.
protocol_discriminator
);
break
;
...
...
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