Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
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
savoirfairelinux
jami-daemon
Commits
3518de4a
Commit
3518de4a
authored
13 years ago
by
Rafaël Carré
Browse files
Options
Downloads
Patches
Plain Diff
* #6392 AudioCodec : fix memory leak
parent
6c1dea8d
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
sflphone-common/src/audio/codecs/audiocodec.cpp
+5
-0
5 additions, 0 deletions
sflphone-common/src/audio/codecs/audiocodec.cpp
sflphone-common/src/audio/codecs/audiocodec.h
+1
-1
1 addition, 1 deletion
sflphone-common/src/audio/codecs/audiocodec.h
with
6 additions
and
1 deletion
sflphone-common/src/audio/codecs/audiocodec.cpp
+
5
−
0
View file @
3518de4a
...
@@ -115,4 +115,9 @@ double AudioCodec::getBandwidth (void) const
...
@@ -115,4 +115,9 @@ double AudioCodec::getBandwidth (void) const
return
_bandwidth
;
return
_bandwidth
;
}
}
AudioCodec
::~
AudioCodec
()
{
delete
_payloadFormat
;
}
}
// end namespace sfl
}
// end namespace sfl
This diff is collapsed.
Click to expand it.
sflphone-common/src/audio/codecs/audiocodec.h
+
1
−
1
View file @
3518de4a
...
@@ -55,7 +55,7 @@ class AudioCodec : public Codec
...
@@ -55,7 +55,7 @@ class AudioCodec : public Codec
*/
*/
AudioCodec
(
const
AudioCodec
&
codec
);
AudioCodec
(
const
AudioCodec
&
codec
);
virtual
~
AudioCodec
()
{}
virtual
~
AudioCodec
()
;
/**
/**
* @Override
* @Override
...
...
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