Problem is apparently in file file_lc.c in function filelc_AllocTabArgs:

gchar **filelc_AllocTabArgs( void )
{
        gchar   **PtrTab = (gchar **)g_malloc0( sizeof(gchar **) * 50 );

        PtrTab [ 0 ] = g_strdup( "nice" );
        PtrTab [ 1 ] = g_strdup( "-n" );
        PtrTab [ 2 ] = g_strdup_printf( "%d", Config.Nice );

        return( (gchar **)PtrTab );
}

There you can see the fixed size for the array.

Reply via email to