(libretro-db) c_converter: merge list entries sharing the same key

instead of overwriting the old ones.
This commit is contained in:
aliaspider 2016-01-26 06:28:34 +01:00
parent 35e54b9777
commit 77e22e9a79
1 changed files with 39 additions and 24 deletions

View File

@ -129,6 +129,7 @@ static void dat_converter_list_free(dat_converter_list_t* list)
free(list->values); free(list->values);
free(list); free(list);
} }
static void dat_converter_list_append(dat_converter_list_t* dst, void* item);
static dat_converter_bt_node_t* dat_converter_bt_node_insert(dat_converter_list_t* list, dat_converter_bt_node_t** node, static dat_converter_bt_node_t* dat_converter_bt_node_insert(dat_converter_list_t* list, dat_converter_bt_node_t** node,
dat_converter_map_t* map) dat_converter_map_t* map)
@ -155,8 +156,20 @@ static dat_converter_bt_node_t* dat_converter_bt_node_insert(dat_converter_list_
/* found match */ /* found match */
if (list->values[(*node)->index].map.type == DAT_CONVERTER_LIST_MAP) if (list->values[(*node)->index].map.type == DAT_CONVERTER_LIST_MAP)
dat_converter_list_free(list->values[(*node)->index].map.value.list); {
if (map->type == DAT_CONVERTER_LIST_MAP)
{
int i;
assert(list->values[(*node)->index].map.value.list->type == map->value.list->type);
for (i = 0; i < map->value.list->count; i++)
dat_converter_list_append(list->values[(*node)->index].map.value.list, &map->value.list->values[i]);
/* set count to 0 to prevent freeing the child nodes */
map->value.list->count = 0;
dat_converter_list_free(map->value.list);
}
}
else
list->values[(*node)->index].map = *map; list->values[(*node)->index].map = *map;
return NULL; return NULL;
@ -630,6 +643,7 @@ static int dat_converter_value_provider(dat_converter_list_item_t** current_item
current->value.type = RDT_BINARY; current->value.type = RDT_BINARY;
current->value.val.binary.len = strlen(value) / 2; current->value.val.binary.len = strlen(value) / 2;
current->value.val.binary.buff = malloc(current->value.val.binary.len); current->value.val.binary.buff = malloc(current->value.val.binary.len);
{
const char* hex_char = value; const char* hex_char = value;
char* out_buff = current->value.val.binary.buff; char* out_buff = current->value.val.binary.buff;
while (*hex_char && *(hex_char + 1)) while (*hex_char && *(hex_char + 1))
@ -655,6 +669,7 @@ static int dat_converter_value_provider(dat_converter_list_item_t** current_item
*out_buff++ = val; *out_buff++ = val;
hex_char++; hex_char++;
} }
}
break; break;
default: default:
assert(0); assert(0);