This is an automated email from Gerrit.

Akos Vandra ([email protected]) just uploaded a new patch set to Gerrit, which 
you can find at http://openocd.zylin.com/661

-- gerrit

commit 83d092267400b6d533092592414b2b7d3def2ed4
Author: Vandra Akos <[email protected]>
Date:   Wed May 23 12:47:55 2012 +0200

    Jim_GetResult was called twice
    
    Removed the superflous call to Jim_GetResult,
    as we are reading in the result to a variable
    anyways in the next instruction.
    
    Change-Id: Idc96400737dc15e28304e97bcea79fa6c7a88ae1
    Signed-off-by: Vandra Akos <[email protected]>

diff --git a/src/server/tcl_server.c b/src/server/tcl_server.c
index 30d55cb..94c3454 100644
--- a/src/server/tcl_server.c
+++ b/src/server/tcl_server.c
@@ -129,9 +129,8 @@ static int tcl_input(struct connection *connection)
                        tclc->tc_line[tclc->tc_lineoffset-1] = '\0';
                        LOG_DEBUG("Executing script:\n %s", tclc->tc_line);
                        retval = Jim_Eval_Named(interp, tclc->tc_line, 
"remote:connection", 1);
-                       LOG_DEBUG("Result: %d\n %s", retval,
-                               Jim_GetString(Jim_GetResult(interp), &reslen));
                        result = Jim_GetString(Jim_GetResult(interp), &reslen);
+                       LOG_DEBUG("Result: %d\n %s", retval, result);
                        retval = tcl_output(connection, result, reslen);
                        if (retval != ERROR_OK)
                                return retval;

-- 

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to