Skip to content

Commit

Permalink
protocols: avoid crashing in drmlease (#7290)
Browse files Browse the repository at this point in the history
instead of potentially causing wonky behaviour from destructing in the
constructor add the unique_ptr reset to doLater and dont use the not
done constructed protolog in the constructor, call Debug::log directly.

see issue #7240
  • Loading branch information
gulafaran authored Aug 12, 2024
1 parent c7b7279 commit 77cf651
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/protocols/DRMLease.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "DRMLease.hpp"
#include "../Compositor.hpp"
#include "managers/eventLoop/EventLoopManager.hpp"
#include <aquamarine/backend/DRM.hpp>
#include <fcntl.h>

Expand Down Expand Up @@ -225,7 +226,7 @@ CDRMLeaseDevice::CDRMLeaseDevice(SP<Aquamarine::CDRMBackend> drmBackend) : backe
auto fd = drm->getNonMasterFD();

if (fd < 0) {
LOGM(ERR, "Failed to dup fd for drm node {}", drm->gpuName);
Debug::log(ERR, "[DRMLease] Failed to dup fd for drm node {}", drm->gpuName);
return;
}

Expand All @@ -247,10 +248,8 @@ CDRMLeaseProtocol::CDRMLeaseProtocol(const wl_interface* iface, const int& ver,
break;
}

if (!primaryDevice || primaryDevice->success) {
PROTO::lease.reset();
return;
}
if (!primaryDevice || !primaryDevice->success)
g_pEventLoopManager->doLater([]() { PROTO::lease.reset(); });
}

void CDRMLeaseProtocol::bindManager(wl_client* client, void* data, uint32_t ver, uint32_t id) {
Expand Down

0 comments on commit 77cf651

Please sign in to comment.