1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-02-02 15:07:36 -05:00

Fix: Use correct malloc function

This commit is contained in:
Philipp Schafft 2015-03-01 15:53:57 +00:00
parent e870c21384
commit 5e8b24785e

View File

@ -248,7 +248,7 @@ static xmlDocPtr custom_loader(const xmlChar *URI,
if (!admin_path) {
size_t len = strlen(config->adminroot_dir);
admin_path = xmlMemMalloc(len+2);
admin_path = xmlMalloc(len+2);
if (!admin_path)
return NULL;