Commit 0c913881 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Cleanup MRLParse

(cherry picked from commit 6094cb67)
parent dc92656d
......@@ -127,7 +127,7 @@ char *ExtractURIString( char *restrict psz_uri,
int TestURIParam( char *psz_uri, const char *psz_name );
/** This function parses a MRL */
input_item_t *MRLParse( intf_thread_t *, char *psz, char *psz_name );
input_item_t *MRLParse( intf_thread_t *, const char *psz, char *psz_name );
/** Return the first word from a string (works in-place) */
char *FirstWord( char *psz, char *new );
......
......@@ -833,14 +833,12 @@ static char *FirstOption( char *psz, char *new )
return NULL;
}
input_item_t *MRLParse( intf_thread_t *p_intf, char *_psz,
input_item_t *MRLParse( intf_thread_t *p_intf, const char *mrl,
char *psz_name )
{
char *psz = strdup( _psz );
char *s_mrl = psz;
char *s_temp;
input_item_t * p_input = NULL;
char *psz = strdup( mrl ), *s_mrl = psz, *s_temp;
if( psz == NULL )
return NULL;
/* extract the mrl */
s_temp = FirstOption( s_mrl, s_mrl );
if( s_temp == NULL )
......@@ -848,7 +846,9 @@ input_item_t *MRLParse( intf_thread_t *p_intf, char *_psz,
s_temp = s_mrl + strlen( s_mrl );
}
p_input = input_item_New( p_intf, s_mrl, psz_name );
input_item_t *p_input = input_item_New( p_intf, s_mrl, psz_name );
if( p_input == NULL )
return NULL;
s_mrl = s_temp;
/* now we can take care of the options */
......@@ -865,7 +865,6 @@ input_item_t *MRLParse( intf_thread_t *p_intf, char *_psz,
s_mrl = s_temp;
}
free( psz );
return p_input;
}
......
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