Skip to content
Snippets Groups Projects
Commit e95550d9 authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[*] Fixed a problem with clearing memory after reading the manifest, which led...

[*] Fixed a problem with clearing memory after reading the manifest, which led to the termination of program execution.
parent c9117e8d
No related branches found
No related tags found
3 merge requests!64features-5056 to develop,!61bugs-5311,!54[*] Fixed a problem with clearing memory after reading the manifest, which led...
...@@ -102,7 +102,7 @@ dap_chain_plugins_list_manifest_t* dap_chain_plugins_add_manifest_from_file(cons ...@@ -102,7 +102,7 @@ dap_chain_plugins_list_manifest_t* dap_chain_plugins_add_manifest_from_file(cons
json_object_put(j_author); json_object_put(j_author);
json_object_put(j_version); json_object_put(j_version);
json_object_put(j_name); json_object_put(j_name);
json_object_put(j_obj); DAP_FREE(j_obj);
DAP_FREE(json); DAP_FREE(json);
return manifest; return manifest;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment