Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dap-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
7
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dap
dap-sdk
Compare revisions
634bf59c2a94a7dec82fcd9304e2f160b3419c45 to 16a8aa9d669a7e8d6bf90b60306a5b11fc411028
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dap/dap-sdk
Select target project
No results found
16a8aa9d669a7e8d6bf90b60306a5b11fc411028
Select Git revision
Swap
Target
dap/dap-sdk
Select target project
dap/dap-sdk
1 result
634bf59c2a94a7dec82fcd9304e2f160b3419c45
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
[*] leak fix
· 16a8aa9d
oljas.jarasbaev
authored
8 months ago
16a8aa9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
net/server/json_rpc/rpc_core/src/dap_json_rpc_request.c
+2
-0
2 additions, 0 deletions
net/server/json_rpc/rpc_core/src/dap_json_rpc_request.c
with
2 additions
and
0 deletions
net/server/json_rpc/rpc_core/src/dap_json_rpc_request.c
View file @
16a8aa9d
...
...
@@ -77,8 +77,10 @@ dap_json_rpc_request_t *dap_json_rpc_request_from_json(const char *a_data)
if
(
err_parse_request
){
DAP_FREE
(
request
->
method
);
DAP_FREE
(
request
);
json_object_put
(
jobj
);
return
NULL
;
}
json_object_put
(
jobj
);
return
request
;
}
...
...
This diff is collapsed.
Click to expand it.