Browse Source

Remove unecessary(and poptentially harmful?) "" around arguments

passed in to "eval" in command.c


git-svn-id: svn://svn.berlios.de/openocd/trunk@1811 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
oharboe 15 years ago
parent
commit
a8daf2251d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/helper/command.c

+ 1
- 1
src/helper/command.c View File

@@ -221,7 +221,7 @@ command_t* register_command(command_context_t *context, command_t *parent, char
free((void *)full_name);

/* we now need to add an overrideable proc */
const char *override_name=alloc_printf("proc %s%s%s {args} {if {[catch {eval \"ocd_%s%s%s $args\"}]==0} {return \"\"} else { return -code error }", t1, t2, t3, t1, t2, t3);
const char *override_name=alloc_printf("proc %s%s%s {args} {if {[catch {eval ocd_%s%s%s $args}]==0} {return \"\"} else { return -code error }", t1, t2, t3, t1, t2, t3);
Jim_Eval_Named(interp, override_name, __THIS__FILE__, __LINE__ );
free((void *)override_name);



Loading…
Cancel
Save