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
a204ad1c
Commit
a204ad1c
authored
Jul 04, 2005
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compile fix for WIN32, needs review
parent
a09124b7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/control/rc.c
modules/control/rc.c
+3
-3
No files found.
modules/control/rc.c
View file @
a204ad1c
...
...
@@ -53,7 +53,7 @@
# define AF_LOCAL AF_UNIX
#endif
#if
def AF_LOCAL
#if
defined(AF_LOCAL) && ! defined(WIN32)
# include <sys/un.h>
#endif
...
...
@@ -186,7 +186,7 @@ static int Activate( vlc_object_t *p_this )
{
int
i_socket
;
#if
ndef AF_LOCAL
#if
!defined(AF_LOCAL) || defined(WIN32)
msg_Warn
(
p_intf
,
"your OS doesn't support filesystem sockets"
);
free
(
psz_unix_path
);
return
VLC_EGENERIC
;
...
...
@@ -313,7 +313,7 @@ static void Deactivate( vlc_object_t *p_this )
net_Close
(
p_intf
->
p_sys
->
i_socket
);
if
(
p_intf
->
p_sys
->
psz_unix_path
!=
NULL
)
{
#if
def AF_LOCAL
#if
defined(AF_LOCAL) && !defined(WIN32)
unlink
(
p_intf
->
p_sys
->
psz_unix_path
);
#endif
free
(
p_intf
->
p_sys
->
psz_unix_path
);
...
...
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