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
0d1293c6
Commit
0d1293c6
authored
Mar 24, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bonjour: cleanings.
parent
cd2cf602
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
modules/services_discovery/bonjour.c
modules/services_discovery/bonjour.c
+4
-11
No files found.
modules/services_discovery/bonjour.c
View file @
0d1293c6
/*****************************************************************************
* bonjour.c: Bonjour services discovery module
*****************************************************************************
* Copyright (C) 2005-200
8
the VideoLAN team
* Copyright (C) 2005-200
9
the VideoLAN team
* $Id$
*
* Authors: Jon Lech Johansen <jon@nanocrew.net>
...
...
@@ -31,8 +31,6 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_playlist.h>
#include <vlc_arrays.h>
#include <vlc_services_discovery.h>
#include <avahi-client/client.h>
...
...
@@ -170,13 +168,12 @@ static void resolve_callback(
}
}
if
(
psz_addr
!=
NULL
)
free
(
(
void
*
)
psz_addr
);
free
(
psz_addr
);
if
(
psz_uri
!=
NULL
)
{
p_input
=
input_item_New
(
p_sd
,
psz_uri
,
name
);
free
(
(
void
*
)
psz_uri
);
free
(
psz_uri
);
}
if
(
p_input
!=
NULL
)
{
...
...
@@ -247,14 +244,10 @@ static int Open( vlc_object_t *p_this )
services_discovery_sys_t
*
p_sys
;
int
err
;
p_sd
->
p_sys
=
p_sys
=
(
services_discovery_sys_t
*
)
malloc
(
sizeof
(
services_discovery_sys_t
)
);
p_sd
->
p_sys
=
p_sys
=
calloc
(
1
,
sizeof
(
services_discovery_sys_t
)
);
if
(
!
p_sys
)
return
VLC_ENOMEM
;
memset
(
p_sys
,
0
,
sizeof
(
*
p_sys
)
);
vlc_dictionary_init
(
&
p_sys
->
services_name_to_input_item
,
1
);
p_sys
->
poll
=
avahi_threaded_poll_new
();
...
...
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