Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cellframe-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
16
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
cellframe
cellframe-sdk
Merge requests
!1730
Feature 12444
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature 12444
feature-12444
into
release-5.3
Overview
0
Commits
37
Pipelines
21
Changes
2
Merged
oljas.jarasbaev
requested to merge
feature-12444
into
release-5.3
8 months ago
Overview
0
Commits
37
Pipelines
21
Changes
1
Expand
[+] relative path to config
👍
0
👎
0
Merge request reports
Viewing commit
bf03abd5
Prev
Next
Show latest version
1 file
+
3
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
bf03abd5
[*] fix leak
· bf03abd5
oljas.jarasbaev
authored
8 months ago
modules/wallet/dap_chain_wallet.c
+
3
−
1
Options
@@ -363,7 +363,9 @@ const char* dap_chain_wallet_get_path(dap_config_t * a_config)
return
log_it
(
L_WARNING
,
"No path to wallet's store has been defined"
),
l_cp
;
return
strncpy
(
s_wallets_path
,
l_cp
,
sizeof
(
s_wallets_path
)
-
1
);
/* Make local copy , return it to caller */
strncpy
(
s_wallets_path
,
l_cp
,
sizeof
(
s_wallets_path
)
-
1
);
/* Make local copy , return it to caller */
DAP_DEL_Z
(
l_cp
);
return
s_wallets_path
;
}
/**
Loading