Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Olivier Crête
libnice
Commits
f9aac6fd
Commit
f9aac6fd
authored
May 20, 2010
by
Olivier Crête
Browse files
stream: Remove useless checks from stream_new
parent
ee16b91f
Changes
1
Hide whitespace changes
Inline
Side-by-side
agent/stream.c
View file @
f9aac6fd
...
...
@@ -52,27 +52,12 @@ stream_new (guint n_components)
{
Stream
*
stream
;
guint
n
;
gboolean
errors
=
FALSE
;
GSList
*
modified_list
;
Component
*
component
;
stream
=
g_slice_new0
(
Stream
);
for
(
n
=
0
;
n
<
n_components
;
n
++
)
{
component
=
component_new
(
n
+
1
);
if
(
component
)
{
modified_list
=
g_slist_append
(
stream
->
components
,
component
);
if
(
modified_list
)
stream
->
components
=
modified_list
;
else
errors
=
TRUE
;
}
else
errors
=
TRUE
;
}
if
(
errors
)
{
stream_free
(
stream
);
return
NULL
;
stream
->
components
=
g_slist_append
(
stream
->
components
,
component
);
}
stream
->
n_components
=
n_components
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment