1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Fix: Do free the base of a refobject as well

This commit is contained in:
Philipp Schafft 2018-06-06 10:49:01 +00:00
parent 48c3ce52b3
commit ac372a2edc

View File

@ -98,6 +98,8 @@ int refobject_unref(refobject_t self)
thread_mutex_unlock(&(base->lock));
thread_mutex_destroy(&(base->lock));
free(base);
return 0;
}