diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-22 20:42:34 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-22 20:42:34 +0100 |
commit | ebd0bdbbf8fbcfc2742a3b62909fe7f761a30890 (patch) | |
tree | 48506648560650c2a527c8b7a09e36fb2e76a078 /src/gamma-coopgamma.c | |
parent | Unlist redshift/issues/807: expected behaviour (diff) | |
download | redshift-ng-ebd0bdbbf8fbcfc2742a3b62909fe7f761a30890.tar.gz redshift-ng-ebd0bdbbf8fbcfc2742a3b62909fe7f761a30890.tar.bz2 redshift-ng-ebd0bdbbf8fbcfc2742a3b62909fe7f761a30890.tar.xz |
Misc stuff
Signed-off-by: Mattias Andrée <m@maandree.se>
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); |