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
2e0b8c15
Commit
2e0b8c15
authored
Apr 21, 2011
by
Konstantin Pavlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UPNP: Provide meaningful error messages when initialization fails.
parent
79fb0d4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/services_discovery/upnp.cpp
modules/services_discovery/upnp.cpp
+2
-2
No files found.
modules/services_discovery/upnp.cpp
View file @
2e0b8c15
...
...
@@ -109,7 +109,7 @@ static int Open( vlc_object_t *p_this )
i_res
=
UpnpInit
(
0
,
0
);
if
(
i_res
!=
UPNP_E_SUCCESS
)
{
msg_Err
(
p_sd
,
"%s"
,
UpnpGetErrorMessage
(
i_res
)
);
msg_Err
(
p_sd
,
"
Initialization failed:
%s"
,
UpnpGetErrorMessage
(
i_res
)
);
free
(
p_sys
);
return
VLC_EGENERIC
;
}
...
...
@@ -121,7 +121,7 @@ static int Open( vlc_object_t *p_this )
i_res
=
UpnpRegisterClient
(
Callback
,
p_sd
,
&
p_sys
->
client_handle
);
if
(
i_res
!=
UPNP_E_SUCCESS
)
{
msg_Err
(
p_sd
,
"%s"
,
UpnpGetErrorMessage
(
i_res
)
);
msg_Err
(
p_sd
,
"
Client registration failed:
%s"
,
UpnpGetErrorMessage
(
i_res
)
);
Close
(
(
vlc_object_t
*
)
p_sd
);
return
VLC_EGENERIC
;
}
...
...
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