From a8245e598ec6c2fc4cb8f9e492c6bd5a0c68d743 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 5 Jul 2011 19:05:24 +0900 Subject: [PATCH] Fix a memory leak. The command hash table is shared between all progs engine instances, but it was being allocated for every instance. Ensure only one is allocated. --- libs/ruamoko/rua_cmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/ruamoko/rua_cmd.c b/libs/ruamoko/rua_cmd.c index 0039a9977..07ae342c9 100644 --- a/libs/ruamoko/rua_cmd.c +++ b/libs/ruamoko/rua_cmd.c @@ -164,7 +164,8 @@ RUA_Cmd_Init (progs_t *pr, int secure) res->cmds = 0; PR_Resources_Register (pr, "Cmd", res, bi_cmd_clear); - bi_cmds = Hash_NewTable (1021, bi_cmd_get_key, bi_cmd_free, 0); + if (!bi_cmds) + bi_cmds = Hash_NewTable (1021, bi_cmd_get_key, bi_cmd_free, 0); PR_RegisterBuiltins (pr, builtins); }