mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-04 20:55:58 +01:00
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:
parent
3ee0f52e09
commit
64c0272f81
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue