Is there a "Heap-use after free" in my code here?
I have a struct in C which mimics a hashtable, except it is an array of linked lists. The length of the array is predetermined by the hash_length and is set to 2^hash_length. My function here is supposed to free all of the memory allocated by its respective ht_create function. By looping through the array… Read More Is there a "Heap-use after free" in my code here?