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
17
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
Commits
95558f6a
Commit
95558f6a
authored
7 months ago
by
Constantin P.
💬
Browse files
Options
Downloads
Plain Diff
Merge branch 'feature-12444' into 'release-5.3'
Feature 12444 See merge request
!1730
parents
2bd56172
87738d31
No related branches found
No related tags found
1 merge request
!1730
Feature 12444
Pipeline
#42857
failed with stage
in 8 minutes and 55 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dap-sdk
+1
-1
1 addition, 1 deletion
dap-sdk
modules/wallet/dap_chain_wallet.c
+4
-2
4 additions, 2 deletions
modules/wallet/dap_chain_wallet.c
with
5 additions
and
3 deletions
dap-sdk
@
b67c2d87
Compare
0e4b729a
...
b67c2d87
Subproject commit
0e4b729ab659a7fc882b6df526cf2b9f87cdaaeb
Subproject commit
b67c2d87d32ec7f3575caef58b664adb1771fdc2
This diff is collapsed.
Click to expand it.
modules/wallet/dap_chain_wallet.c
+
4
−
2
View file @
95558f6a
...
...
@@ -359,11 +359,13 @@ const char* dap_chain_wallet_get_path(dap_config_t * a_config)
return
s_wallets_path
;
/* Fine, just return existen value */
/* Retrieve Wallet's store path from config */
if
(
!
(
l_cp
=
(
char
*
)
dap_config_get_item_str
(
a_config
,
"resources"
,
"wallets_path"
))
)
if
(
!
(
l_cp
=
dap_config_get_item_str
_path_default
(
a_config
,
"resources"
,
"wallets_path"
,
NULL
))
)
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
;
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment