fix FSCORE-176

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9364 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2008-08-25 16:40:39 +00:00
parent ca79084134
commit f12174a097
1 changed files with 3 additions and 5 deletions

View File

@ -1154,11 +1154,9 @@ static void switch_load_core_config(const char *file)
for (param = switch_xml_child(settings, "variable"); param; param = param->next) {
const char *var = switch_xml_attr_soft(param, "name");
const char *val = switch_xml_attr_soft(param, "value");
char *varr = NULL, *vall = NULL;
varr = switch_core_strdup(runtime.memory_pool, var);
vall = switch_core_strdup(runtime.memory_pool, val);
switch_core_hash_insert(runtime.global_vars, varr, vall);
if (var && val) {
switch_core_set_variable(var, val);
}
}
}