Update third-party submodule SimpleArchiver
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 3s

Also fixes related to the updated third-party submodule.
This commit is contained in:
Stephen Seo 2024-09-09 11:32:05 +09:00
parent 9294108f13
commit 2791714f2c
2 changed files with 4 additions and 4 deletions

View file

@ -132,7 +132,7 @@
strncpy((char*)key, separating_key, separating_key_size); \ strncpy((char*)key, separating_key, separating_key_size); \
unsigned char *value = malloc(value_idx); \ unsigned char *value = malloc(value_idx); \
memcpy(value, value_buf, value_idx); \ memcpy(value, value_buf, value_idx); \
if (simple_archiver_hash_map_insert(&hash_map, \ if (simple_archiver_hash_map_insert(hash_map, \
value, \ value, \
key, \ key, \
separating_key_size, \ separating_key_size, \
@ -152,7 +152,7 @@
wrapper->paths = hash_map; \ wrapper->paths = hash_map; \
\ \
if (simple_archiver_hash_map_insert( \ if (simple_archiver_hash_map_insert( \
&config.hash_map, \ config.hash_map, \
wrapper, \ wrapper, \
value, \ value, \
value_idx, \ value_idx, \
@ -196,7 +196,7 @@
unsigned char *value = malloc(value_idx); \ unsigned char *value = malloc(value_idx); \
memcpy(value, value_buf, value_idx); \ memcpy(value, value_buf, value_idx); \
\ \
if (simple_archiver_hash_map_insert(&hash_map_wrapper->paths, \ if (simple_archiver_hash_map_insert(hash_map_wrapper->paths, \
value, \ value, \
key, \ key, \
key_idx, \ key_idx, \

@ -1 +1 @@
Subproject commit 425fa7790016d96e11d31407d697540d6893edf9 Subproject commit 3408183b3923e0e05811984a33260a7b80b15146