Stylistic, equivalent change

This commit is contained in:
Přemysl Eric Janouch 2015-12-28 04:02:52 +01:00
parent 2d8a8e0b1b
commit f6d74544f8
1 changed files with 2 additions and 4 deletions

View File

@ -4873,10 +4873,8 @@ config_load (struct config *self, struct config_item *root)
(&root->value.object, module->name);
// Silently fix inputs that only a lunatic user could create
if (!subtree || subtree->type != CONFIG_ITEM_OBJECT)
{
subtree = config_item_object ();
str_map_set (&root->value.object, module->name, subtree);
}
str_map_set (&root->value.object, module->name,
(subtree = config_item_object ()));
if (module->loader)
module->loader (subtree, module->user_data);
}