mirror of
https://github.com/swaywm/sway.git
synced 2024-11-29 19:31:29 +00:00
Avoid dereferencing null configuration
Fixes: https://github.com/SirCmpwn/sway/issues/865
This commit is contained in:
parent
f99992a8ae
commit
8af49eb696
|
@ -859,7 +859,7 @@ void apply_input_config(struct input_config *ic, struct libinput_device *dev) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void apply_output_config(struct output_config *oc, swayc_t *output) {
|
void apply_output_config(struct output_config *oc, swayc_t *output) {
|
||||||
if (oc->enabled == 0) {
|
if (oc && oc->enabled == 0) {
|
||||||
destroy_output(output);
|
destroy_output(output);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue