From 227f8ac604c11bebf5b248e28caf0d59576f2ba8 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Sun, 4 Aug 2013 12:51:01 +0200 Subject: [PATCH] core: fix uninitialized variable "result" in callback of command /eval --- src/core/wee-command.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/wee-command.c b/src/core/wee-command.c index b90bbd1fb..66be06f4d 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -1520,6 +1520,7 @@ COMMAND_CALLBACK(eval) hashtable_set (options, "type", "condition"); } + result = NULL; if (print_only) { expr = string_remove_quotes (ptr_args, "\"");