From: Øyvind Harboe Date: Sun, 27 Mar 2011 21:50:53 +0000 (+0200) Subject: command: fix leak when executing commands X-Git-Tag: v0.5.0-rc1~124 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=68bd107c6db941ec7b22f3e491e314041a95224b;hp=dec80e1cffa162ba0e1cd8e6ee66c7784fe79b87 command: fix leak when executing commands found via valgrind, not observed/reported. Signed-off-by: Øyvind Harboe --- diff --git a/src/helper/command.c b/src/helper/command.c index 85d9463dfc..b00a231268 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -723,6 +723,7 @@ int command_run_linef(struct command_context *context, const char *format, ...) if (string != NULL) { retval = command_run_line(context, string); + free(string); } va_end(ap); return retval;