From: oharboe Date: Thu, 10 Jul 2008 08:57:35 +0000 (+0000) Subject: SEGFAULT fix for syntax error. X-Git-Tag: v0.1.0~514 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=bfa8c1b3213d5d2541648f7f3db460f81d949fb1 SEGFAULT fix for syntax error. git-svn-id: svn://svn.berlios.de/openocd/trunk@783 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/openocd.c b/src/openocd.c index 50eb99e0b1..f4aa451728 100644 --- a/src/openocd.c +++ b/src/openocd.c @@ -360,10 +360,14 @@ int jim_command(command_context_t *context, char *line) if (retcode == JIM_ERR) { Jim_PrintErrorMessage(interp); long t; - if (Jim_GetLong(interp, Jim_GetVariableStr(interp, "openocd_result", JIM_ERRMSG), &t)==JIM_OK) + Jim_Obj *openocd_result=Jim_GetVariableStr(interp, "openocd_result", JIM_ERRMSG); + if (openocd_result) { - return t; - } + if (Jim_GetLong(interp, openocd_result, &t)==JIM_OK) + { + return t; + } + } return ERROR_FAIL; } const char *result;