Fix coverity UNUSED_VALUE findings in core support level files
[asterisk/asterisk.git] / main / loader.c
index eacdff7..1415fa9 100644 (file)
@@ -1075,13 +1075,13 @@ int load_modules(unsigned int preload_only)
                        if (mod->flags.running)
                                continue;
 
                        if (mod->flags.running)
                                continue;
 
-                       order = add_to_load_order(mod->resource, &load_order, 0);
+                       add_to_load_order(mod->resource, &load_order, 0);
                }
 
 #ifdef LOADABLE_MODULES
                /* if we are allowed to load dynamic modules, scan the directory for
                   for all available modules and add them as well */
                }
 
 #ifdef LOADABLE_MODULES
                /* if we are allowed to load dynamic modules, scan the directory for
                   for all available modules and add them as well */
-               if ((dir  = opendir(ast_config_AST_MODULE_DIR))) {
+               if ((dir = opendir(ast_config_AST_MODULE_DIR))) {
                        while ((dirent = readdir(dir))) {
                                int ld = strlen(dirent->d_name);
 
                        while ((dirent = readdir(dir))) {
                                int ld = strlen(dirent->d_name);