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 d4b9b1f commit bea6345Copy full SHA for bea6345
xci.c
@@ -96,6 +96,7 @@ void xci_process(xci_ctx_t *ctx) {
96
ctx->partition_ctx.offset = ctx->header.hfs0_offset;
97
ctx->partition_ctx.tool_ctx = &blank_ctx;
98
ctx->partition_ctx.name = "rootpt";
99
+ ctx->partition_ctx.hash_suffix = NULL;
100
hfs0_process(&ctx->partition_ctx);
101
102
if (ctx->partition_ctx.header->num_files > 4) {
@@ -127,7 +128,7 @@ void xci_process(xci_ctx_t *ctx) {
127
128
cur_ctx->offset = ctx->partition_ctx.offset + hfs0_get_header_size(ctx->partition_ctx.header) + cur_file->offset;
129
cur_ctx->tool_ctx = &blank_ctx;
130
cur_ctx->file = ctx->file;
- cur_ctx->hash_suffix = compatiblity_type_ptr;
131
+ cur_ctx->hash_suffix = NULL;
132
hfs0_process(cur_ctx);
133
}
134
0 commit comments