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

corrected coding style

svn path=/icecast/trunk/icecast/; revision=18666
This commit is contained in:
Philipp Schafft 2012-10-14 23:50:15 +00:00
parent 2b40660a20
commit 4e7434c71c

View File

@ -1359,13 +1359,13 @@ static void *source_fallback_file (void *arg)
{
if (mount == NULL || mount[0] != '/')
break;
config = config_get_config();
config = config_get_config ();
len = strlen (config->webroot_dir) + strlen (mount) + 1;
path = malloc (len);
if (path)
snprintf (path, len, "%s%s", config->webroot_dir, mount);
config_release_config ();
if (path == NULL)
break;