git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6276f9
)
Prevent these errors when using help flag
author
Antoine Cellerier
<dionoea@videolan.org>
Sun, 25 Feb 2007 01:46:25 +0000
(
01:46
+0000)
committer
Antoine Cellerier
<dionoea@videolan.org>
Sun, 25 Feb 2007 01:46:25 +0000
(
01:46
+0000)
[
00000001
] main libvlc error: option daemon does not exist
[
00000001
] main libvlc error: option pidfile does not exist
The were due to the module_EndBand( p_libvlc ); on line 430 in libvlc-common.c . Please check that this is the correct way of doing it.
src/libvlc-common.c
patch
|
blob
|
history
diff --git
a/src/libvlc-common.c
b/src/libvlc-common.c
index
b850e92
..
2ff4f9c
100644
(file)
--- a/
src/libvlc-common.c
+++ b/
src/libvlc-common.c
@@
-1007,6
+1007,7
@@
int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, vlc_bool_t b_release )
#ifndef WIN32
char* psz_pidfile = NULL;
+ if( p_libvlc->p_libvlc_global->p_module_bank )
if( config_GetInt( p_libvlc, "daemon" ) )
{
psz_pidfile = config_GetPsz( p_libvlc, "pidfile" );