We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4477a41 commit 6a1d53bCopy full SHA for 6a1d53b
1 file changed
tockloader-lib/src/attributes/app_attributes.rs
@@ -117,6 +117,14 @@ impl AppAttributes {
117
// crash the process.
118
let binary_end_offset = header.get_binary_end();
119
120
+ match &header {
121
+ TbfHeader::TbfHeaderV2(_hd) => {}
122
+ _ => {
123
+ appaddr += total_size as u64;
124
+ continue;
125
+ }
126
+ };
127
+
128
let mut footers: Vec<TbfFooter> = vec![];
129
let total_footers_size = total_size - binary_end_offset;
130
let mut footer_offset = binary_end_offset;
0 commit comments