so I have a piece of memory allocated with malloc() and changed later with realloc().
malloc()
realloc()
At some point in my code I want to empty it, by this
Use free(pointer); pointer = 0 instead of realloc(pointer, 0).
free(pointer); pointer = 0
realloc(pointer, 0)