Different methods to use GSList as value of a GHashTable

Unless there’s some good reason to use linked lists (single or double), I would suggest using a GPtrArray instead. Lower allocation and traversal overheads, and less complex to handle.

1 Like