Browse Source

api.c: Release io_data->ptr when releasing io_data in io_free()

nfactor-troky
Maksym Borodin 11 years ago committed by Noel Maersk
parent
commit
7383e19a9d
  1. 1
      api.c

1
api.c

@ -587,6 +587,7 @@ static void io_free() @@ -587,6 +587,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);

Loading…
Cancel
Save