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
spbro
OpenXG-RAN
Commits
08e57ca3
Commit
08e57ca3
authored
Jan 17, 2023
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix: use correct size in malloc()
parent
924d88bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
radio/ETHERNET/USERSPACE/LIB/eth_udp.c
radio/ETHERNET/USERSPACE/LIB/eth_udp.c
+1
-1
No files found.
radio/ETHERNET/USERSPACE/LIB/eth_udp.c
View file @
08e57ca3
...
...
@@ -417,7 +417,7 @@ extern int oai_exit;
void
*
udp_write_thread
(
void
*
arg
)
{
udp_ctx_t
*
utx
=
(
udp_ctx_t
*
)
arg
;
utx
->
resp
=
(
notifiedFIFO_t
*
)
malloc
(
sizeof
(
notifiedFIFO_elt_t
));
utx
->
resp
=
malloc
(
sizeof
(
*
utx
->
resp
));
initNotifiedFIFO
(
utx
->
resp
);
LOG_D
(
PHY
,
"UDP write thread started on core %d
\n
"
,
sched_getcpu
());
reset_meas
(
&
utx
->
device
->
tx_fhaul
);
...
...
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