Skip to content
Snippets Groups Projects
Commit 11c06291 authored by dmitriy.gerasimov's avatar dmitriy.gerasimov
Browse files

Merge branch 'bugfix-5056' into 'develop'

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

See merge request !53
parents a5898577 c22f8546
No related branches found
No related tags found
1 merge request!53[*] 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