Check nextEnabledOutput()'s return in bestModeForAspect()
In case no enabled outputs, we will reference wrong index of output array.
This commit is contained in:
parent
278c11f01f
commit
56c615368c
|
@ -1912,7 +1912,8 @@ bestModeForAspect(xf86CrtcConfigPtr config, Bool *enabled, float aspect)
|
||||||
int o = -1, p;
|
int o = -1, p;
|
||||||
DisplayModePtr mode = NULL, test = NULL, match = NULL;
|
DisplayModePtr mode = NULL, test = NULL, match = NULL;
|
||||||
|
|
||||||
nextEnabledOutput(config, enabled, &o);
|
if (!nextEnabledOutput(config, enabled, &o))
|
||||||
|
return NULL;
|
||||||
while ((mode = nextAspectMode(config->output[o], mode, aspect))) {
|
while ((mode = nextAspectMode(config->output[o], mode, aspect))) {
|
||||||
test = mode;
|
test = mode;
|
||||||
for (p = o; nextEnabledOutput(config, enabled, &p); ) {
|
for (p = o; nextEnabledOutput(config, enabled, &p); ) {
|
||||||
|
|
Loading…
Reference in New Issue