output_state: Gamma lut should be freed only if committed

We consider state that is not committed to be uninitialized.
This commit is contained in:
Alexander Orzechowski 2023-06-17 23:13:05 -04:00
parent 3ee0f52e09
commit 64c0272f81
1 changed files with 3 additions and 1 deletions

View File

@ -112,7 +112,9 @@ bool wlr_output_state_set_gamma_lut(struct wlr_output_state *state,
memcpy(gamma_lut + ramp_size, g, ramp_size * sizeof(uint16_t));
memcpy(gamma_lut + 2 * ramp_size, b, ramp_size * sizeof(uint16_t));
} else {
free(state->gamma_lut);
if (state->committed & WLR_OUTPUT_STATE_GAMMA_LUT) {
free(state->gamma_lut);
}
}
state->committed |= WLR_OUTPUT_STATE_GAMMA_LUT;