output_state: Gamma lut should be freed only if committed

We consider state that is not committed to be uninitialized.
master
Alexander Orzechowski 1 year ago
parent 3ee0f52e09
commit 64c0272f81

@ -112,8 +112,10 @@ 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 {
if (state->committed & WLR_OUTPUT_STATE_GAMMA_LUT) {
free(state->gamma_lut);
}
}
state->committed |= WLR_OUTPUT_STATE_GAMMA_LUT;
state->gamma_lut_size = ramp_size;

Loading…
Cancel
Save