Re: [PATCH 0/2] plugins: Freeing allocated values in hash tables.

2021-04-26 Thread Alex Bennée
Alex Bennée writes: > Mahmoud Mandour writes: > >> A hash table made using ``g_hash_table_new`` requires manually >> freeing any dynamically allocated keys/values. The two patches >> in this series fixes this issue in hotblocks and hotpages plugins. > > Queued to plugins/next, thanks. Oops, d

Re: [PATCH 0/2] plugins: Freeing allocated values in hash tables.

2021-04-26 Thread Alex Bennée
Mahmoud Mandour writes: > A hash table made using ``g_hash_table_new`` requires manually > freeing any dynamically allocated keys/values. The two patches > in this series fixes this issue in hotblocks and hotpages plugins. Queued to plugins/next, thanks. -- Alex Bennée

[PATCH 0/2] plugins: Freeing allocated values in hash tables.

2021-04-21 Thread Mahmoud Mandour
A hash table made using ``g_hash_table_new`` requires manually freeing any dynamically allocated keys/values. The two patches in this series fixes this issue in hotblocks and hotpages plugins. Mahmoud Mandour (2): plugins/hotblocks: Properly freed the hash table values plugins/hotpages: Proper