fix: chunk_decompress compilation, chunk_compress data ptr, chunk_format serialization, file_destroy leak, test_chunk memcmp

This commit is contained in:
2026-07-04 21:02:59 +02:00
parent e6c55356c8
commit 1486ac7088
3 changed files with 44 additions and 39 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ static void test_file_operations() {
file_load_data(f);
EXPECT_NOT_NULL(f->data);
EXPECT_EQ_INT(memcmp(f->data, test_content, test_len), 0);
EXPECT_EQ_INT(memcmp(f->data->data, test_content, test_len), 0);
file_destroy(f);
unlink(test_path);