NSM: const fix in NSM proxy.

pull/3/head
Jonathan Moore Liles 2012-06-24 11:48:11 -07:00
parent 7f8de0710a
commit f4dace9983
1 changed files with 5 additions and 4 deletions

View File

@ -109,17 +109,18 @@ public:
// char *args[] = { strdup( executable ), NULL };
char *cmd;
if ( _arguments )
asprintf( &cmd, "exec %s %s", _executable, _arguments );
else
asprintf( &cmd, "exec %s", _executable );
const char *args[] = { _executable, "-c", cmd, NULL };
char *args[] = { _executable, strdup( "-c" ), cmd, NULL };
setenv( "NSM_CLIENT_ID", nsm_client_id, 1 );
setenv( "NSM_SESSION_NAME", nsm_display_name, 1 );
if ( -1 == execvp( "/bin/sh", (char**)args ) )
if ( -1 == execvp( "/bin/sh", args ) )
{
WARNING( "Error starting process: %s", strerror( errno ) );
@ -357,9 +358,9 @@ show_gui ( void )
char *url = lo_server_get_url( losrv );
const char *args[] = { executable, "--connect-to", url, NULL };
char *args[] = { executable, strdup( "--connect-to" ), url, NULL };
if ( -1 == execvp( executable, (char**)args ) )
if ( -1 == execvp( executable, args ) )
{
WARNING( "Error starting process: %s", strerror( errno ) );