From 8142294dda12d5fd7615eed7986ad0d276793c03 Mon Sep 17 00:00:00 2001 From: Richard Knutsson Date: Sat, 24 Nov 2007 22:22:19 +0100 Subject: [MIPS] Compliment va_start() with va_end(). Signed-off-by: Richard Knutsson Signed-off-by: Ralf Baechle --- arch/mips/math-emu/ieee754.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch/mips/math-emu/ieee754.c') diff --git a/arch/mips/math-emu/ieee754.c b/arch/mips/math-emu/ieee754.c index 946aee33178..cb1b6822711 100644 --- a/arch/mips/math-emu/ieee754.c +++ b/arch/mips/math-emu/ieee754.c @@ -108,6 +108,7 @@ int ieee754si_xcpt(int r, const char *op, ...) ax.rv.si = r; va_start(ax.ap, op); ieee754_xcpt(&ax); + va_end(ax.ap); return ax.rv.si; } @@ -122,5 +123,6 @@ s64 ieee754di_xcpt(s64 r, const char *op, ...) ax.rv.di = r; va_start(ax.ap, op); ieee754_xcpt(&ax); + va_end(ax.ap); return ax.rv.di; } -- cgit v1.2.3