Skip to content
Snippets Groups Projects
Commit 4eff52f2 authored by Moe Jette's avatar Moe Jette
Browse files

fix for uninitialized variable

parent 0936bd91
No related branches found
No related tags found
No related merge requests found
...@@ -716,7 +716,7 @@ extern List as_mysql_remove_coord(mysql_conn_t *mysql_conn, uint32_t uid, ...@@ -716,7 +716,7 @@ extern List as_mysql_remove_coord(mysql_conn_t *mysql_conn, uint32_t uid,
char *query = NULL, *object = NULL, *extra = NULL, *last_user = NULL; char *query = NULL, *object = NULL, *extra = NULL, *last_user = NULL;
char *user_name = NULL; char *user_name = NULL;
time_t now = time(NULL); time_t now = time(NULL);
int set = 0, is_admin=0, rc; int set = 0, is_admin=0, rc = SLURM_SUCCESS;
ListIterator itr = NULL; ListIterator itr = NULL;
acct_user_rec_t *user_rec = NULL; acct_user_rec_t *user_rec = NULL;
List ret_list = NULL; List ret_list = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment