Commit 69db2459 authored by Gildas Bazin's avatar Gildas Bazin

* modules/stream_out/standard.c: fixed a few small mem leaks.

parent 9164f5c7
...@@ -135,22 +135,25 @@ static int Open( vlc_object_t *p_this ) ...@@ -135,22 +135,25 @@ static int Open( vlc_object_t *p_this )
char *psz_mux_byext = NULL; char *psz_mux_byext = NULL;
sout_ParseCfg( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options, p_stream->p_cfg ); sout_ParseCfg( p_stream, SOUT_CFG_PREFIX, ppsz_sout_options,
p_stream->p_cfg );
var_Get( p_stream, SOUT_CFG_PREFIX "access", &val ); var_Get( p_stream, SOUT_CFG_PREFIX "access", &val );
psz_access = *val.psz_string ? val.psz_string : NULL; psz_access = *val.psz_string ? val.psz_string : NULL;
if( val.psz_string && !*val.psz_string ) free( val.psz_string );
var_Get( p_stream, SOUT_CFG_PREFIX "mux", &val ); var_Get( p_stream, SOUT_CFG_PREFIX "mux", &val );
psz_mux = *val.psz_string ? val.psz_string : NULL; psz_mux = *val.psz_string ? val.psz_string : NULL;
if( val.psz_string && !*val.psz_string ) free( val.psz_string );
var_Get( p_stream, SOUT_CFG_PREFIX "url", &val ); var_Get( p_stream, SOUT_CFG_PREFIX "url", &val );
psz_url = *val.psz_string ? val.psz_string : NULL; psz_url = *val.psz_string ? val.psz_string : NULL;
if( val.psz_string && !*val.psz_string ) free( val.psz_string );
p_stream->p_sys = malloc( sizeof( sout_stream_sys_t) ); p_stream->p_sys = malloc( sizeof( sout_stream_sys_t) );
p_stream->p_sys->p_session = NULL; p_stream->p_sys->p_session = NULL;
msg_Dbg( p_this, "creating `%s/%s://%s'", msg_Dbg( p_this, "creating `%s/%s://%s'", psz_access, psz_mux, psz_url );
psz_access, psz_mux, psz_url );
/* ext -> muxer name */ /* ext -> muxer name */
if( psz_url && strrchr( psz_url, '.' ) ) if( psz_url && strrchr( psz_url, '.' ) )
...@@ -192,15 +195,15 @@ static int Open( vlc_object_t *p_this ) ...@@ -192,15 +195,15 @@ static int Open( vlc_object_t *p_this )
/* We fix access/mux to valid couple */ /* We fix access/mux to valid couple */
if( psz_access == NULL && psz_mux == NULL ) if( !psz_access && !psz_mux )
{ {
if( psz_mux_byext ) if( psz_mux_byext )
{ {
msg_Warn( p_stream, msg_Warn( p_stream,
"no access _and_ no muxer, extention gives file/%s", "no access _and_ no muxer, extention gives file/%s",
psz_mux_byext ); psz_mux_byext );
psz_access = "file"; psz_access = strdup("file");
psz_mux = psz_mux_byext; psz_mux = strdup(psz_mux_byext);
} }
else else
{ {
...@@ -209,40 +212,41 @@ static int Open( vlc_object_t *p_this ) ...@@ -209,40 +212,41 @@ static int Open( vlc_object_t *p_this )
} }
} }
if( psz_access && psz_mux == NULL ) if( psz_access && !psz_mux )
{ {
/* access given, no mux */ /* access given, no mux */
if( !strncmp( psz_access, "mmsh", 4 ) ) if( !strncmp( psz_access, "mmsh", 4 ) )
{ {
psz_mux = "asfh"; psz_mux = strdup("asfh");
} }
else if( !strncmp( psz_access, "udp", 3 ) ) else if( !strncmp( psz_access, "udp", 3 ) )
{ {
psz_mux = "ts"; psz_mux = strdup("ts");
} }
else else
{ {
psz_mux = psz_mux_byext; psz_mux = strdup(psz_mux_byext);
} }
} }
else if( psz_mux && psz_access == NULL ) else if( psz_mux && !psz_access )
{ {
/* mux given, no access */ /* mux given, no access */
if( !strncmp( psz_mux, "asfh", 4 ) ) if( !strncmp( psz_mux, "asfh", 4 ) )
{ {
psz_access = "mmsh"; psz_access = strdup("mmsh");
} }
else else
{ {
/* default file */ /* default file */
psz_access = "file"; psz_access = strdup("file");
} }
} }
/* fix or warm of incompatible couple */ /* fix or warm of incompatible couple */
if( psz_mux && psz_access ) if( psz_mux && psz_access )
{ {
if( !strncmp( psz_access, "mmsh", 4 ) && strncmp( psz_mux, "asfh", 4 ) ) if( !strncmp( psz_access, "mmsh", 4 ) &&
strncmp( psz_mux, "asfh", 4 ) )
{ {
char *p = strchr( psz_mux,'{' ); char *p = strchr( psz_mux,'{' );
...@@ -255,7 +259,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -255,7 +259,7 @@ static int Open( vlc_object_t *p_this )
} }
else else
{ {
psz_mux = "asfh"; psz_mux = strdup("asfh");
} }
} }
else if( ( !strncmp( psz_access, "rtp", 3 ) || else if( ( !strncmp( psz_access, "rtp", 3 ) ||
...@@ -280,7 +284,9 @@ static int Open( vlc_object_t *p_this ) ...@@ -280,7 +284,9 @@ static int Open( vlc_object_t *p_this )
{ {
msg_Err( p_stream, "no suitable sout access module for `%s/%s://%s'", msg_Err( p_stream, "no suitable sout access module for `%s/%s://%s'",
psz_access, psz_mux, psz_url ); psz_access, psz_mux, psz_url );
return( VLC_EGENERIC ); if( psz_access ) free( psz_access );
if( psz_mux ) free( psz_mux );
return VLC_EGENERIC;
} }
msg_Dbg( p_stream, "access opened" ); msg_Dbg( p_stream, "access opened" );
...@@ -292,14 +298,16 @@ static int Open( vlc_object_t *p_this ) ...@@ -292,14 +298,16 @@ static int Open( vlc_object_t *p_this )
psz_access, psz_mux, psz_url ); psz_access, psz_mux, psz_url );
sout_AccessOutDelete( p_access ); sout_AccessOutDelete( p_access );
return( VLC_EGENERIC ); if( psz_access ) free( psz_access );
if( psz_mux ) free( psz_mux );
return VLC_EGENERIC;
} }
msg_Dbg( p_stream, "mux opened" ); msg_Dbg( p_stream, "mux opened" );
/* *** Create the SAP Session structure *** */ /* *** Create the SAP Session structure *** */
var_Get( p_stream, SOUT_CFG_PREFIX "sap", &val ); var_Get( p_stream, SOUT_CFG_PREFIX "sap", &val );
if( val.b_bool && if( val.b_bool &&
( strstr( psz_access, "udp" ) || strstr( psz_access , "rtp" ) ) ) ( strstr( psz_access, "udp" ) || strstr( psz_access , "rtp" ) ) )
{ {
session_descriptor_t *p_session = sout_AnnounceSessionCreate(); session_descriptor_t *p_session = sout_AnnounceSessionCreate();
announce_method_t *p_method = announce_method_t *p_method =
...@@ -324,10 +332,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -324,10 +332,7 @@ static int Open( vlc_object_t *p_this )
if( url.psz_host ) if( url.psz_host )
{ {
if( url.i_port == 0 ) if( url.i_port == 0 ) url.i_port = DEFAULT_PORT;
{
url.i_port = DEFAULT_PORT;
}
p_session->psz_uri = url.psz_host; p_session->psz_uri = url.psz_host;
p_session->i_port = url.i_port; p_session->i_port = url.i_port;
...@@ -373,9 +378,9 @@ static int Open( vlc_object_t *p_this ) ...@@ -373,9 +378,9 @@ static int Open( vlc_object_t *p_this )
else else
{ {
p_slp = malloc(sizeof(slp_session_t)); p_slp = malloc(sizeof(slp_session_t));
p_slp->psz_url= strdup(psz_url); p_slp->psz_url = strdup( psz_url );
p_slp->psz_name = strdup( *val.psz_string ? val.psz_string : p_slp->psz_name =
psz_url ); strdup( *val.psz_string ? val.psz_string : psz_url );
} }
free( val.psz_string ); free( val.psz_string );
} }
...@@ -388,6 +393,10 @@ static int Open( vlc_object_t *p_this ) ...@@ -388,6 +393,10 @@ static int Open( vlc_object_t *p_this )
p_stream->p_sys->p_mux = p_mux; p_stream->p_sys->p_mux = p_mux;
p_stream->p_sys->p_slp = p_slp; p_stream->p_sys->p_slp = p_slp;
if( psz_access ) free( psz_access );
if( psz_mux ) free( psz_mux );
if( psz_url ) free( psz_url );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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