From dd7aedf07314ed41b7f29e1efb70134c8963f050 Mon Sep 17 00:00:00 2001
From: Dmitriy Gerasimov <naeper@demlabs.net>
Date: Tue, 28 May 2019 13:24:54 +0700
Subject: [PATCH] [+] memory leak until we fix dap_client_close()

---
 dap_chain_node_cli_cmd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dap_chain_node_cli_cmd.c b/dap_chain_node_cli_cmd.c
index 43681c6327..cf2e5961b1 100644
--- a/dap_chain_node_cli_cmd.c
+++ b/dap_chain_node_cli_cmd.c
@@ -836,7 +836,7 @@ int com_node(int a_argc, const char ** a_argv, char **a_str_reply)
         DAP_DELETE(l_remote_node_info);
         dap_client_disconnect(l_node_client->client);
         l_node_client->client = NULL;
-        dap_chain_node_client_close(l_node_client);
+        //dap_chain_node_client_close(l_node_client);
         dap_chain_node_cli_set_reply_text(a_str_reply, "Node sync completed: Chains and gdb are synced");
         return 0;
 
-- 
GitLab