fix nullptr deref

This commit is contained in:
Vaxry 2024-06-30 12:23:17 +02:00
parent c7e4f24c45
commit 93c35602ca

View File

@ -793,9 +793,12 @@ bool CMonitorState::test() {
bool CMonitorState::updateSwapchain() {
auto options = m_pOwner->output->swapchain->currentOptions();
const auto& STATE = m_pOwner->output->state->state();
const auto& MODE = STATE.mode ? STATE.mode : STATE.customMode;
if (!MODE)
return true;
options.format = STATE.drmFormat;
options.scanout = true;
options.length = 2;
options.size = STATE.mode ? STATE.mode->pixelSize : STATE.customMode->pixelSize;
options.size = MODE->pixelSize;
return m_pOwner->output->swapchain->reconfigure(options);
}