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

[+] Fixed error clean information from JSON request. Moved from the features-5056 branch.

parent ace64781
No related branches found
No related tags found
3 merge requests!512bugfix-5760,!501Update dap_chain_global_db_driver_cdb.c - removed unused piece of code (added by bugfix5456),!427Correction in the implementation of JSON-RPC and added processing of simple CORS requests in dap_http_simple.
......@@ -4,11 +4,8 @@
void dap_json_rpc_request_JSON_free(dap_json_rpc_request_JSON_t *l_request_JSON)
{
json_object_put(l_request_JSON->obj_error);
if (l_request_JSON->struct_error)
dap_json_rpc_error_JSON_free(l_request_JSON->struct_error);
json_object_put(l_request_JSON->obj_id);
json_object_put(l_request_JSON->obj_result);
DAP_FREE(l_request_JSON);
}
......
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