Commit 603b805d authored by Antoine Cellerier's avatar Antoine Cellerier

Fix a bug.

parent ba96f5e2
...@@ -606,16 +606,23 @@ static void Run( intf_thread_t *p_intf ) ...@@ -606,16 +606,23 @@ static void Run( intf_thread_t *p_intf )
char *psz_myarg = strchr( psz_mycmd, ' ' ); char *psz_myarg = strchr( psz_mycmd, ' ' );
char *psz_msg; char *psz_msg;
*psz_myarg = '\0'; if( !psz_myarg )
psz_myarg ++; {
msg_rc( "Not enough parameters." );
var_Command( p_input, psz_alias, psz_mycmd, psz_myarg, &psz_msg ); }
else
{
*psz_myarg = '\0';
psz_myarg ++;
var_Command( p_intf, psz_alias, psz_mycmd, psz_myarg,
&psz_msg );
if( psz_msg ) if( psz_msg )
{ {
msg_rc( psz_msg ); msg_rc( psz_msg );
free( psz_msg ); free( psz_msg );
}
} }
free( psz_mycmd ); free( psz_mycmd );
} }
......
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