Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-stream-ch
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap-stream-ch
Compare revisions
9bead7765fba0a633098bf2279547c4dbf62cc4f to f2eabb784a6286356359e69cb50a2957a57aa0b0
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/libdap-stream-ch
Select target project
No results found
f2eabb784a6286356359e69cb50a2957a57aa0b0
Select Git revision
Swap
Target
cellframe/libdap-stream-ch
Select target project
cellframe/libdap-stream-ch
1 result
9bead7765fba0a633098bf2279547c4dbf62cc4f
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
fixed memory exception in dap_stream_ch_delete()
· 24f51903
alexander.lysikov
authored
5 years ago
24f51903
Merge branch 'feature-2307' into 'master'
· f2eabb78
dmitriy.gerasimov
authored
5 years ago
fixed memory exception in dap_stream_ch_delete() See merge request
!1
f2eabb78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dap_stream_ch.c
+2
-0
2 additions, 0 deletions
dap_stream_ch.c
with
2 additions
and
0 deletions
dap_stream_ch.c
View file @
f2eabb78
...
@@ -110,9 +110,11 @@ void dap_stream_ch_delete(dap_stream_ch_t*ch)
...
@@ -110,9 +110,11 @@ void dap_stream_ch_delete(dap_stream_ch_t*ch)
pthread_mutex_destroy
(
&
(
ch
->
mutex
));
pthread_mutex_destroy
(
&
(
ch
->
mutex
));
/* fixed raise, but probably may be memory leak!
if(ch->internal){
if(ch->internal){
free(ch->internal);
free(ch->internal);
}
}
*/
//free(ch);
//free(ch);
}
}
...
...
This diff is collapsed.
Click to expand it.