Skip to content
Snippets Groups Projects
Commit 2994697a authored by Brian Christiansen's avatar Brian Christiansen
Browse files

Don't worry about free'ing unused vars

parent 5cf9faa0
No related branches found
No related tags found
No related merge requests found
...@@ -255,9 +255,6 @@ extern int as_mysql_add_clusters(mysql_conn_t *mysql_conn, uint32_t uid, ...@@ -255,9 +255,6 @@ extern int as_mysql_add_clusters(mysql_conn_t *mysql_conn, uint32_t uid,
if ((rc = create_cluster_tables(mysql_conn, if ((rc = create_cluster_tables(mysql_conn,
object->name)) object->name))
!= SLURM_SUCCESS) { != SLURM_SUCCESS) {
xfree(extra);
xfree(cols);
xfree(vals);
added = 0; added = 0;
if (mysql_errno(mysql_conn->db_conn) if (mysql_errno(mysql_conn->db_conn)
== ER_WRONG_TABLE_NAME) == ER_WRONG_TABLE_NAME)
......
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