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
50bf08e1
Commit
50bf08e1
authored
10 years ago
by
Tristan Matthews
Committed by
Emmanuel Milou
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
manager: fixed uninitialized pointer bug
Refs #51340 Change-Id: Ie22a9c53068097dc97472b61010c092fbe4b4706
parent
1b14a8e7
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
daemon/src/managerimpl.cpp
+1
-1
1 addition, 1 deletion
daemon/src/managerimpl.cpp
with
1 addition
and
1 deletion
daemon/src/managerimpl.cpp
+
1
−
1
View file @
50bf08e1
...
...
@@ -1981,7 +1981,7 @@ void ManagerImpl::setIsAlwaysRecording(bool isAlwaysRec)
bool
ManagerImpl
::
toggleRecordingCall
(
const
std
::
string
&
id
)
{
std
::
shared_ptr
<
Call
>
call
;
Recordable
*
rec
;
Recordable
*
rec
=
nullptr
;
ConferenceMap
::
const_iterator
it
(
conferenceMap_
.
find
(
id
));
if
(
it
==
conferenceMap_
.
end
())
{
...
...
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