After successfully call buildargv(), the code need to be sure of calling
freeargv() in any cases.
2015-02-02  Chen Gang <gang.chen.5i5j@gmail.com>
       * common/sim-options.c (sim_args_command): Call freeargv() when
       failure occurs.
+2015-02-02  Chen Gang <gang.chen.5i5j@gmail.com>
+
+       * common/sim-options.c (sim_args_command): Call freeargv() when
+       failure occurs.
+
 2014-07-01  Chen Gang <gang.chen.5i5j@gmail.com>
 
        * sim/microblaze/interp.c: Use long int format instead of int
 
       sim_cpu *cpu;
 
       if (argv [0] == NULL)
-       return SIM_RC_OK; /* FIXME - perhaps help would be better */
+       {
+         freeargv (argv);
+         return SIM_RC_OK; /* FIXME - perhaps help would be better */
+       }
 
       /* First check for a cpu selector.  */
       {