Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
libnice
Commits
c92139c8
Commit
c92139c8
authored
Apr 22, 2008
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a logic bug
darcs-hash:20080422163047-4f0f6-734497a855a7070b2bdb5e856c79b374455f6caf.gz
parent
64c4096d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
agent/stream.c
agent/stream.c
+2
-2
No files found.
agent/stream.c
View file @
c92139c8
...
@@ -119,8 +119,8 @@ stream_all_components_ready (const Stream *stream)
...
@@ -119,8 +119,8 @@ stream_all_components_ready (const Stream *stream)
for
(
i
=
stream
->
components
;
i
;
i
=
i
->
next
)
{
for
(
i
=
stream
->
components
;
i
;
i
=
i
->
next
)
{
Component
*
component
=
i
->
data
;
Component
*
component
=
i
->
data
;
if
(
component
&&
if
(
component
&&
(
component
->
state
==
NICE_COMPONENT_STATE_CONNECTED
||
!
(
component
->
state
==
NICE_COMPONENT_STATE_CONNECTED
||
component
->
state
==
NICE_COMPONENT_STATE_READY
))
component
->
state
==
NICE_COMPONENT_STATE_READY
))
return
FALSE
;
return
FALSE
;
}
}
...
...
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