Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
videolan
vlc-2-2
Commits
887faff1
Commit
887faff1
authored
Jan 27, 2003
by
Olivier Teulière
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed a segfault (closes #132)
parent
fb1b3cf4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/misc/netutils.c
src/misc/netutils.c
+7
-1
No files found.
src/misc/netutils.c
View file @
887faff1
...
...
@@ -2,7 +2,7 @@
* netutils.c: various network functions
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: netutils.c,v 1.7
8 2003/01/15 23:55:22 massiot
Exp $
* $Id: netutils.c,v 1.7
9 2003/01/27 21:44:39 ipkiss
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Benoit Steiner <benny@via.ecp.fr>
...
...
@@ -174,6 +174,12 @@ int __network_ChannelJoin( vlc_object_t *p_this, int i_channel )
struct
timeval
delay
;
fd_set
fds
;
if
(
p_this
->
p_vlc
->
p_channel
==
NULL
)
{
msg_Warn
(
p_this
,
"channels not initialized"
);
return
0
;
}
if
(
p_this
->
p_vlc
->
p_channel
->
i_channel
==
i_channel
)
{
return
0
;
...
...
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