Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
adbbaf3e
Commit
adbbaf3e
authored
Jan 16, 2006
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
return NULL properly in libvlc_playlist_get_input()
parent
dc6ed6d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/control/playlist.c
src/control/playlist.c
+2
-2
No files found.
src/control/playlist.c
View file @
adbbaf3e
...
...
@@ -4,7 +4,7 @@
* Copyright (C) 2005 the VideoLAN team
* $Id$
*
* Authors: Cl
m
ent Stenac <zorglub@videolan.org>
* Authors: Cl
�
ent Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -50,7 +50,7 @@ libvlc_input_t * libvlc_playlist_get_input( libvlc_instance_t *p_instance,
{
libvlc_exception_raise
(
p_exception
,
"No active input"
);
vlc_mutex_unlock
(
&
p_instance
->
p_playlist
->
object_lock
);
return
;
return
NULL
;
}
p_input
=
(
libvlc_input_t
*
)
malloc
(
sizeof
(
libvlc_input_t
)
);
...
...
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