From: ntfreak Date: Mon, 18 Feb 2008 16:54:18 +0000 (+0000) Subject: - arg list now correctly released on error. Thanks Øyvind Harboe X-Git-Tag: v0.1.0~983 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=f2a5a1ce8125936f7d96254da7e1f77867b3cb7b - arg list now correctly released on error. Thanks Øyvind Harboe git-svn-id: svn://svn.berlios.de/openocd/trunk@306 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/helper/command.c b/src/helper/command.c index 8b7ad36eaa..df12ffc1b4 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -275,6 +275,7 @@ void command_print(command_context_t *context, char *format, ...) /* gotta free up */ if (buffer) free(buffer); + va_end(ap); return; }