1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

- fixed small memory leak

svn path=/trunk/icecast/; revision=5010
This commit is contained in:
oddsock 2003-06-26 13:32:34 +00:00
parent 303c11197f
commit fb9292658b

View File

@ -118,6 +118,8 @@ void stats_shutdown()
free(event->source);
if(event->value)
free(event->value);
if(event->name)
free(event->name);
next = event->next;
free(event);
event = next;