diff --git a/src/plugins/gres/gpu/gres_gpu.c b/src/plugins/gres/gpu/gres_gpu.c index ef7aeef2d005c508d45d117fc0963e60d2e7eb90..d05641ff8350b32db9183328d824e78a91348785 100644 --- a/src/plugins/gres/gpu/gres_gpu.c +++ b/src/plugins/gres/gpu/gres_gpu.c @@ -130,8 +130,6 @@ extern int node_config_load(List gres_conf_list) iter = list_iterator_create(gres_conf_list); if (iter == NULL) fatal("list_iterator_create: malloc failure"); - - iter = list_iterator_create(gres_conf_list); while ((gres_slurmd_conf = list_next(iter))) { if (strcmp(gres_slurmd_conf->name, gres_name)) continue; @@ -153,6 +151,8 @@ extern int node_config_load(List gres_conf_list) } iter = list_iterator_create(gres_conf_list); + if (iter == NULL) + fatal("list_iterator_create: malloc failure"); while ((gres_slurmd_conf = list_next(iter))) { if ((strcmp(gres_slurmd_conf->name, gres_name) == 0) && gres_slurmd_conf->file) { diff --git a/src/plugins/gres/mic/gres_mic.c b/src/plugins/gres/mic/gres_mic.c index 11e8f78c73081cc7e4387107f1ff5c388e4bc873..f8c143c9ae84c6e3fc3b415d8f78681c22607413 100644 --- a/src/plugins/gres/mic/gres_mic.c +++ b/src/plugins/gres/mic/gres_mic.c @@ -132,8 +132,6 @@ extern int node_config_load(List gres_conf_list) iter = list_iterator_create(gres_conf_list); if (iter == NULL) fatal("list_iterator_create: malloc failure"); - - iter = list_iterator_create(gres_conf_list); while ((gres_slurmd_conf = list_next(iter))) { if (strcmp(gres_slurmd_conf->name, gres_name)) continue; @@ -155,6 +153,8 @@ extern int node_config_load(List gres_conf_list) } iter = list_iterator_create(gres_conf_list); + if (iter == NULL) + fatal("list_iterator_create: malloc failure"); while ((gres_slurmd_conf = list_next(iter))) { if ((strcmp(gres_slurmd_conf->name, gres_name) == 0) && gres_slurmd_conf->file) {