]> git.sur5r.net Git - openocd/commitdiff
Invalid command syntax errors with MWW.
authorDean Glazeski <dnglaze@gmail.com>
Sat, 14 Nov 2009 18:39:08 +0000 (12:39 -0600)
committerZachary T Welch <zw@superlucidity.net>
Sat, 14 Nov 2009 18:58:35 +0000 (10:58 -0800)
This fixes an issue due to the new command handler syntax caused by the mw handler playing with the args pointer before
using the CMD_NAME macro.  Fix is to move this call above the lines changing args.

src/target/target.c

index cc8d500f0ccbc1c889da65c1079072f7c03f56df..6ecf16a1e887750fb08a35b3c1a62a0744d94612 100644 (file)
@@ -2308,6 +2308,7 @@ COMMAND_HANDLER(handle_mw_command)
        bool physical=strcmp(args[0], "phys")==0;
        int (*fn)(struct target *target,
                        uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
+       const char *cmd_name = CMD_NAME;
        if (physical)
        {
                argc--;
@@ -2333,7 +2334,7 @@ COMMAND_HANDLER(handle_mw_command)
        struct target *target = get_current_target(cmd_ctx);
        unsigned wordsize;
        uint8_t value_buf[4];
-       switch (CMD_NAME[2])
+       switch (cmd_name[6])
        {
                case 'w':
                        wordsize = 4;