Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
savoirfairelinux
jami-daemon
Commits
5af953f9
Commit
5af953f9
authored
Apr 12, 2012
by
Tristan Matthews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* #9782: mainbuffer: get rid of unused vars
parent
84cc8833
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
daemon/src/audio/mainbuffer.cpp
daemon/src/audio/mainbuffer.cpp
+4
-7
No files found.
daemon/src/audio/mainbuffer.cpp
View file @
5af953f9
...
...
@@ -133,19 +133,16 @@ void MainBuffer::bindCallID(const std::string & call_id1, const std::string & ca
{
ost
::
MutexLock
guard
(
mutex_
);
RingBuffer
*
ring_buffer
;
CallIDSet
*
callid_set
;
if
((
ring_buffer
=
getRingBuffer
(
call_id1
))
==
NULL
)
if
(
getRingBuffer
(
call_id1
)
==
NULL
)
createRingBuffer
(
call_id1
);
if
(
(
callid_set
=
getCallIDSet
(
call_id1
)
)
==
NULL
)
if
(
getCallIDSet
(
call_id1
)
==
NULL
)
createCallIDSet
(
call_id1
);
if
(
(
ring_buffer
=
getRingBuffer
(
call_id2
)
)
==
NULL
)
if
(
getRingBuffer
(
call_id2
)
==
NULL
)
createRingBuffer
(
call_id2
);
if
(
(
callid_set
=
getCallIDSet
(
call_id2
)
)
==
NULL
)
if
(
getCallIDSet
(
call_id2
)
==
NULL
)
createCallIDSet
(
call_id2
);
getRingBuffer
(
call_id1
)
->
createReadPointer
(
call_id2
);
...
...
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