Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
librist
Manage
Activity
Members
Labels
Plan
Issues
29
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
rist
librist
Merge requests
!144
Fix leak of dataout_fifo_queue
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Fix leak of dataout_fifo_queue
quink/librist:fix-leak
into
master
Overview
2
Commits
1
Pipelines
1
Changes
1
Closed
Zhao Zhili
requested to merge
quink/librist:fix-leak
into
master
3 years ago
Overview
2
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
99ca2df9
1 commit,
3 years ago
1 file
+
2
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/flow.c
+
2
−
0
Options
@@ -150,6 +150,8 @@ void rist_delete_flow(struct rist_receiver *ctx, struct rist_flow *f)
free_data_block
(
&
f
->
dataout_fifo_queue
[
i
]);
}
}
free
(
f
->
dataout_fifo_queue
);
f
->
dataout_fifo_queue
=
NULL
;
// Delete flow
rist_log_priv
(
&
ctx
->
common
,
RIST_LOG_INFO
,
"Deleting flow
\n
"
);
Loading