Skip to content

Commit

Permalink
Fix user defined tuner delete.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerilk committed Jul 9, 2024
1 parent e331c34 commit f1e851e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tuner_user_defined.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ _ccs_tuner_user_defined_del(ccs_object_t o)
err = d->vector.del((ccs_tuner_t)o);
ccs_release_object(d->common_data.search_space);
ccs_release_object(d->common_data.objective_space);
ccs_release_object(d->common_data.feature_space);
if (d->common_data.feature_space)
ccs_release_object(d->common_data.feature_space);
return err;
}

Expand Down

0 comments on commit f1e851e

Please sign in to comment.