Merge pull request #3272 from orestisf1993/fake-outputs

Fix: ConfigureNotify can crash i3 with fake-outputs
This commit is contained in:
Ingo Bürk 2018-05-04 21:58:01 +02:00 committed by GitHub
commit d302af2312
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -856,8 +856,9 @@ void randr_query_outputs(void) {
/* If there's no randr output, enable the output covering the root window. */ /* If there's no randr output, enable the output covering the root window. */
if (any_randr_output_active()) { if (any_randr_output_active()) {
DLOG("Active RandR output found. Disabling root output.\n"); DLOG("Active RandR output found. Disabling root output.\n");
if (root_output->active) if (root_output && root_output->active) {
root_output->to_be_disabled = true; root_output->to_be_disabled = true;
}
} else { } else {
DLOG("No active RandR output found. Enabling root output.\n"); DLOG("No active RandR output found. Enabling root output.\n");
root_output->active = true; root_output->active = true;