From 72ce6787e37a14f6aaab1a0b024f20440c961517 Mon Sep 17 00:00:00 2001 From: Max Filippov Date: Mon, 13 Jul 2015 15:42:00 +0300 Subject: xtensa: ISS: add missing va_end into split_if_spec Reported-by: David Binderman Signed-off-by: Max Filippov --- arch/xtensa/platforms/iss/network.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'arch/xtensa/platforms') diff --git a/arch/xtensa/platforms/iss/network.c b/arch/xtensa/platforms/iss/network.c index 8ab021b..976a385 100644 --- a/arch/xtensa/platforms/iss/network.c +++ b/arch/xtensa/platforms/iss/network.c @@ -105,13 +105,17 @@ static char *split_if_spec(char *str, ...) va_start(ap, str); while ((arg = va_arg(ap, char**)) != NULL) { - if (*str == '\0') + if (*str == '\0') { + va_end(ap); return NULL; + } end = strchr(str, ','); if (end != str) *arg = str; - if (end == NULL) + if (end == NULL) { + va_end(ap); return NULL; + } *end++ = '\0'; str = end; } -- cgit v1.1