Commit adbbaf3e authored by Jean-Paul Saman's avatar Jean-Paul Saman

return NULL properly in libvlc_playlist_get_input()

parent dc6ed6d9
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Copyright (C) 2005 the VideoLAN team * Copyright (C) 2005 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Clment Stenac <zorglub@videolan.org> * Authors: Clent Stenac <zorglub@videolan.org>
* *
* This program is free software; you can redistribute it and/or modify * 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 * 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, ...@@ -50,7 +50,7 @@ libvlc_input_t * libvlc_playlist_get_input( libvlc_instance_t *p_instance,
{ {
libvlc_exception_raise( p_exception, "No active input" ); libvlc_exception_raise( p_exception, "No active input" );
vlc_mutex_unlock( &p_instance->p_playlist->object_lock ); vlc_mutex_unlock( &p_instance->p_playlist->object_lock );
return; return NULL;
} }
p_input = (libvlc_input_t *)malloc( sizeof( libvlc_input_t ) ); p_input = (libvlc_input_t *)malloc( sizeof( libvlc_input_t ) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment