From 4a4838059fd109428eb90df27c4682b9d206cbb0 Mon Sep 17 00:00:00 2001 From: "monty@narttu.mysql.fi" <> Date: Thu, 3 Apr 2003 21:19:14 +0300 Subject: Fixed bug in warning handling (Memory was allocated from wrong MEM_ROOT) --- strings/my_vsnprintf.c | 1 - 1 file changed, 1 deletion(-) (limited to 'strings/my_vsnprintf.c') diff --git a/strings/my_vsnprintf.c b/strings/my_vsnprintf.c index 34dee0f839f..a9fdc3718a8 100644 --- a/strings/my_vsnprintf.c +++ b/strings/my_vsnprintf.c @@ -37,7 +37,6 @@ int my_snprintf(char* to, size_t n, const char* fmt, ...) { int result; va_list args; - int result; va_start(args,fmt); result= my_vsnprintf(to, n, fmt, args); va_end(args); -- cgit v1.2.1