api.c: Release io_data->ptr when releasing io_data in io_free()
diff --git a/api.c b/api.c
index 3ceaa8e..f9e2fd0 100644
--- a/api.c
+++ b/api.c
@@ -797,6 +797,7 @@ static void io_free()
do {
io_next = io_list->next;
+ free(io_list->io_data->ptr);
free(io_list->io_data);
free(io_list);