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
18
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
!891
support-6913
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
support-6913
support-6913
into
develop
Overview
0
Commits
19
Pipelines
12
Changes
100
Merged
Roman Khlopkov
requested to merge
support-6913
into
develop
2 years ago
Overview
0
Commits
19
Pipelines
12
Changes
1
Expand
[*] Last DAP SDK fixes ported from master
👍
0
👎
0
Merge request reports
Compare
version 11
version 11
687c29fc
2 years ago
version 10
75492089
2 years ago
version 9
863dbf95
2 years ago
version 8
ef4e97dc
2 years ago
version 7
c13e5c00
2 years ago
version 6
f74a9781
2 years ago
version 5
5a867a25
2 years ago
version 4
539854ac
2 years ago
version 3
ee961cf8
2 years ago
version 2
046535c6
2 years ago
version 1
dbfe7419
2 years ago
develop (base)
and
latest version
latest version
6bb7ffbf
19 commits,
2 years ago
version 11
687c29fc
18 commits,
2 years ago
version 10
75492089
16 commits,
2 years ago
version 9
863dbf95
15 commits,
2 years ago
version 8
ef4e97dc
14 commits,
2 years ago
version 7
c13e5c00
13 commits,
2 years ago
version 6
f74a9781
12 commits,
2 years ago
version 5
5a867a25
11 commits,
2 years ago
version 4
539854ac
10 commits,
2 years ago
version 3
ee961cf8
8 commits,
2 years ago
version 2
046535c6
6 commits,
2 years ago
version 1
dbfe7419
2 commits,
2 years ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
modules/global-db/dap_chain_global_db_remote.c
+
1
−
1
Options
@@ -591,7 +591,7 @@ unsigned char *pdata;
*
(
(
uint64_t
*
)
pdata
)
=
a_store_obj
->
value_len
;
pdata
+=
sizeof
(
uint64_t
);
memcpy
(
pdata
,
a_store_obj
->
value
,
a_store_obj
->
value_len
);
pdata
+=
a_store_obj
->
value_len
;
assert
(
(
pdata
-
l_pkt
->
data
)
==
l_data_size_out
);
assert
(
(
uint32_t
)
(
pdata
-
l_pkt
->
data
)
==
l_data_size_out
);
return
l_pkt
;
}
Loading