diff options
Diffstat (limited to 'src/gamma-coopgamma.c')
-rw-r--r-- | src/gamma-coopgamma.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/gamma-coopgamma.c b/src/gamma-coopgamma.c index 6f9edb7..5343e08 100644 --- a/src/gamma-coopgamma.c +++ b/src/gamma-coopgamma.c @@ -362,32 +362,28 @@ static void coopgamma_free(struct gamma_state *state) { free(state->methods); - state->methods = NULL; free(state->method); - state->method = NULL; free(state->site); - state->site = NULL; while (state->n_crtcs--) { state->crtcs[state->n_crtcs].filter.class = NULL; libcoopgamma_filter_destroy(&state->crtcs[state->n_crtcs].filter); libcoopgamma_ramps_destroy(&state->crtcs[state->n_crtcs].plain_ramps); } - state->n_crtcs = 0; free(state->crtcs); - state->crtcs = NULL; libcoopgamma_context_destroy(&state->ctx, 1); while (state->n_outputs--) free(state->outputs[state->n_outputs].edid); state->n_outputs = 0; free(state->outputs); - state->outputs = NULL; + + free(state); } static void -coopgamma_print_help(FILE *f) +coopgamma_print_help(FILE *f) /* TODO not documented in readme and manpage */ { fputs(_("Adjust gamma ramps with coopgamma.\n"), f); fputs("\n", f); |