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

Fix: fixed memory leak on XSPF generation

This commit is contained in:
Philipp Schafft 2015-01-18 17:14:03 +00:00
parent 5e5d575a77
commit 7e4650138e

View File

@ -503,6 +503,7 @@ int fserve_client_create (client_t *httpclient, const char *path)
free (reference);
admin_send_response (doc, httpclient, TRANSFORMED, xslt_playlist_requested);
xmlFreeDoc(doc);
free (fullpath);
return 0;
}