summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pass/pass-rescon.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pass/pass-rescon.c b/src/pass/pass-rescon.c
index a90999d..a42f421 100644
--- a/src/pass/pass-rescon.c
+++ b/src/pass/pass-rescon.c
@@ -185,7 +185,7 @@ static int rescon_update(struct pass_resource *res)
struct pass_level *levels = res->config_data.levels;
struct pass_level *scenario_levels = res->config_data.scenario_levels;
struct pass_level adjusted_level;
- GList *list = rescon->scenario_level_list;
+ GList *list;
int res_type = res->config_data.res_type;
int limit_max_freq = -1;
int limit_min_freq = -1;
@@ -222,6 +222,7 @@ static int rescon_update(struct pass_resource *res)
/* Adjust with scenario pass_level */
g_mutex_lock(&rescon->scenario_level_mutex);
+ list = rescon->scenario_level_list;
while (list != NULL) {
i = GPOINTER_TO_INT(list->data);
list = g_list_next(list);