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

Fix: Clear XSLT admin path cache on config reload

This commit is contained in:
Marvin Scholz 2018-07-09 03:28:15 +02:00
parent 450c26a45b
commit f52f562e76

View File

@ -142,6 +142,11 @@ void xslt_clear_cache(void)
for (i = 0; i < CACHESIZE; i++)
clear_cache_entry(i);
if (admin_URI) {
xmlFree(admin_URI);
admin_URI = NULL;
}
thread_mutex_unlock(&xsltlock);
}